diff --git a/.python-version b/.python-version index 0c7d5f5..d2c96c0 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.11.4 +3.11.3 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 06f176d..a003311 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -78,7 +78,9 @@ Ready to contribute? Here's how to set up `sc2_datasets` for local development. 4. When you're done making changes, check that your changes conform to any code formatting requirements and pass any tests. -5. Commit your changes and open a pull request. +5. Before running tests make sure to setup environment variable name: `TEST_WORKSPACE` value: `YOUR_PATH_TO_APP` + +6. Commit your changes and open a pull request. ## Pull Request Guidelines diff --git a/README.md b/README.md index 0896dc2..2b3dbfc 100644 --- a/README.md +++ b/README.md @@ -77,81 +77,32 @@ Interested in contributing? Check out the contributing guidelines. Please note t `sc2_datasets` project was created by Andrzej Białecki. It is licensed under the terms of the GNU General Public License v3.0 license. -## Citations +## Cite -### This Repository - -If you wish to cite the official API for the SC2EGSet: StarCraft II Esport Game State Dataset. - -```bibtex -@software{bialecki_andrzej_2022_6930224, - author = {Białecki, Andrzej and - Białecki, Piotr and - Szczap, Andrzej and - Krupiński, Leszek}, - title = {Kaszanas/SC2\_Datasets: 1.0.0 SC2\_Datasets Release}, - month = jul, - year = 2022, - publisher = {Zenodo}, - version = {1.0.0}, - doi = {10.5281/zenodo.6629005}, - url = {https://doi.org/10.5281/zenodo.6629005} -} -``` - -### [Dataset Description Pre-print](https://arxiv.org/abs/2207.03428) +### [Dataset Description Article](https://www.researchgate.net/publication/373767449_SC2EGSet_StarCraft_II_Esport_Replay_and_Game-state_Dataset) To cite the article that introduces [SC2ReSet](https://doi.org/10.5281/zenodo.5575796) and [SC2EGSet](https://doi.org/10.5281/zenodo.5503997) use this: ```bibtex -@misc{https://doi.org/10.48550/arxiv.2207.03428, - doi = {10.48550/ARXIV.2207.03428}, - url = {https://arxiv.org/abs/2207.03428}, - author = {Białecki, Andrzej and Jakubowska, Natalia and Dobrowolski, Paweł and Białecki, Piotr and Krupiński, Leszek and Szczap, Andrzej and Białecki, Robert and Gajewski, Jan}, - keywords = {Machine Learning (cs.LG), Artificial Intelligence (cs.AI), Machine Learning (stat.ML), FOS: Computer and information sciences, FOS: Computer and information sciences}, - title = {SC2EGSet: StarCraft II Esport Replay and Game-state Dataset}, - publisher = {arXiv}, - year = {2022}, - copyright = {Creative Commons Attribution 4.0 International} -} - -``` - -### [SC2ReSet: StarCraft II Esport Replaypack Set](https://doi.org/10.5281/zenodo.5575796) - -To cite the replay collection that was used to generate the dataset use this: - -```bibtex -@dataset{bialecki_andrzej_2022_5575797, - author = {Białecki, Andrzej}, - title = {SC2ReSet: StarCraft II Esport Replaypack Set}, - month = jun, - year = 2022, - publisher = {Zenodo}, - version = {1.0.0}, - doi = {10.5281/zenodo.5575797}, - url = {https://doi.org/10.5281/zenodo.5575797} -} -``` - -### [SC2EGSet: StarCraft II Esport Game State Dataset](https://doi.org/10.5281/zenodo.5503997) - -To cite the data itself use this: - -```bibtex -@dataset{bialecki_andrzej_2022_6629349, - author = {Białecki, Andrzej and - Jakubowska, Natalia and - Dobrowolski, Paweł and - Szczap, Andrzej and - Białecki, Robert and - Gajewski, Jan}, - title = {SC2EGSet: StarCraft II Esport Game State Dataset}, - month = jun, - year = 2022, - publisher = {Zenodo}, - version = {1.0.0}, - doi = {10.5281/zenodo.6629349}, - url = {https://doi.org/10.5281/zenodo.6629349} +@article{Białecki2023, + author = {Bia{\l}ecki, Andrzej + and Jakubowska, Natalia + and Dobrowolski, Pawe{\l} + and Bia{\l}ecki, Piotr + and Krupi{\'{n}}ski, Leszek + and Szczap, Andrzej + and Bia{\l}ecki, Robert + and Gajewski, Jan}, + title = {SC2EGSet: StarCraft II Esport Replay and Game-state Dataset}, + journal = {Scientific Data}, + year = {2023}, + month = {Sep}, + day = {08}, + volume = {10}, + number = {1}, + pages = {600}, + issn = {2052-4463}, + doi = {10.1038/s41597-023-02510-7}, + url = {https://doi.org/10.1038/s41597-023-02510-7} } ``` diff --git a/docker/docker-test-compose.yml b/docker/docker-test-compose.yml index c7d564a..6630114 100644 --- a/docker/docker-test-compose.yml +++ b/docker/docker-test-compose.yml @@ -1,10 +1,8 @@ -version: '3' services: - sc2_datasets: build: - context: '../' - dockerfile: './docker/Dockerfile.dev' + context: "../" + dockerfile: "./docker/Dockerfile.dev" container_name: test_sc2_datasets environment: - TEST_WORKSPACE=/app diff --git a/makefile b/makefile index 26b27fe..ca5d898 100644 --- a/makefile +++ b/makefile @@ -3,10 +3,10 @@ DEPLOY_DIR = ./docker TEST_COMPOSE = $(DEPLOY_DIR)/docker-test-compose.yml action_compose_build: - docker-compose -f $(TEST_COMPOSE) build + docker compose -f $(TEST_COMPOSE) build action_compose_test: ## Triggered from a GitHub Action to run the tests for CI. - docker-compose -f $(TEST_COMPOSE) run --rm sc2_datasets sh -c "poetry run pytest --ignore-glob='test_*.py' ./tests/test_cases/ --cov=sc2_datasets --cov-report term-missing --cov-report html --cov=xml 2>&1" + docker compose -f $(TEST_COMPOSE) run --rm --build sc2_datasets sh -c "poetry run pytest --ignore-glob='test_*.py' ./tests/test_cases/ --cov=sc2_datasets --cov-report term-missing --cov-report html --cov=xml 2>&1" doc: poetry run make html --directory docs/ diff --git a/poetry.lock b/poetry.lock index 94835bf..6c9b8da 100644 --- a/poetry.lock +++ b/poetry.lock @@ -957,6 +957,20 @@ files = [ {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, ] +[[package]] +name = "intel-openmp" +version = "2021.4.0" +description = "Intel OpenMP* Runtime Library" +optional = false +python-versions = "*" +files = [ + {file = "intel_openmp-2021.4.0-py2.py3-none-macosx_10_15_x86_64.macosx_11_0_x86_64.whl", hash = "sha256:41c01e266a7fdb631a7609191709322da2bbf24b252ba763f125dd651bcc7675"}, + {file = "intel_openmp-2021.4.0-py2.py3-none-manylinux1_i686.whl", hash = "sha256:3b921236a38384e2016f0f3d65af6732cf2c12918087128a9163225451e776f2"}, + {file = "intel_openmp-2021.4.0-py2.py3-none-manylinux1_x86_64.whl", hash = "sha256:e2240ab8d01472fed04f3544a878cda5da16c26232b7ea1b59132dbfb48b186e"}, + {file = "intel_openmp-2021.4.0-py2.py3-none-win32.whl", hash = "sha256:6e863d8fd3d7e8ef389d52cf97a50fe2afe1a19247e8c0d168ce021546f96fc9"}, + {file = "intel_openmp-2021.4.0-py2.py3-none-win_amd64.whl", hash = "sha256:eef4c8bcc8acefd7f5cd3b9384dbf73d59e2c99fc56545712ded913f43c4a94f"}, +] + [[package]] name = "ipykernel" version = "6.29.5" @@ -1325,6 +1339,24 @@ files = [ {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, ] +[[package]] +name = "mkl" +version = "2021.4.0" +description = "Intel® oneAPI Math Kernel Library" +optional = false +python-versions = "*" +files = [ + {file = "mkl-2021.4.0-py2.py3-none-macosx_10_15_x86_64.macosx_11_0_x86_64.whl", hash = "sha256:67460f5cd7e30e405b54d70d1ed3ca78118370b65f7327d495e9c8847705e2fb"}, + {file = "mkl-2021.4.0-py2.py3-none-manylinux1_i686.whl", hash = "sha256:636d07d90e68ccc9630c654d47ce9fdeb036bb46e2b193b3a9ac8cfea683cce5"}, + {file = "mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl", hash = "sha256:398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb"}, + {file = "mkl-2021.4.0-py2.py3-none-win32.whl", hash = "sha256:439c640b269a5668134e3dcbcea4350459c4a8bc46469669b2d67e07e3d330e8"}, + {file = "mkl-2021.4.0-py2.py3-none-win_amd64.whl", hash = "sha256:ceef3cafce4c009dd25f65d7ad0d833a0fbadc3d8903991ec92351fe5de1e718"}, +] + +[package.dependencies] +intel-openmp = "==2021.*" +tbb = "==2021.*" + [[package]] name = "mpmath" version = "1.3.0" @@ -2864,6 +2896,19 @@ files = [ [package.extras] widechars = ["wcwidth"] +[[package]] +name = "tbb" +version = "2021.13.0" +description = "Intel® oneAPI Threading Building Blocks (oneTBB)" +optional = false +python-versions = "*" +files = [ + {file = "tbb-2021.13.0-py2.py3-none-manylinux1_i686.whl", hash = "sha256:a2567725329639519d46d92a2634cf61e76601dac2f777a05686fea546c4fe4f"}, + {file = "tbb-2021.13.0-py2.py3-none-manylinux1_x86_64.whl", hash = "sha256:aaf667e92849adb012b8874d6393282afc318aca4407fc62f912ee30a22da46a"}, + {file = "tbb-2021.13.0-py3-none-win32.whl", hash = "sha256:6669d26703e9943f6164c6407bd4a237a45007e79b8d3832fe6999576eaaa9ef"}, + {file = "tbb-2021.13.0-py3-none-win_amd64.whl", hash = "sha256:3528a53e4bbe64b07a6112b4c5a00ff3c61924ee46c9c68e004a1ac7ad1f09c3"}, +] + [[package]] name = "torch" version = "2.4.0" @@ -2897,6 +2942,7 @@ files = [ filelock = "*" fsspec = "*" jinja2 = "*" +mkl = {version = ">=2021.1.1,<=2021.4.0", markers = "platform_system == \"Windows\""} networkx = "*" nvidia-cublas-cu12 = {version = "12.1.3.1", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""} nvidia-cuda-cupti-cu12 = {version = "12.1.105", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""} diff --git a/src/sc2_datasets/transforms/mmr_vs_result.py b/src/sc2_datasets/transforms/mmr_vs_result.py index 92df31c..1bc46af 100644 --- a/src/sc2_datasets/transforms/mmr_vs_result.py +++ b/src/sc2_datasets/transforms/mmr_vs_result.py @@ -28,7 +28,7 @@ def mmr_vs_result(sc2_replay: SC2ReplayData) -> Tuple[torch.Tensor, torch.Tensor dtype=torch.float, ) - result_dict = {"Loss": 0, "Win": 1} + result_dict = {"Loss": 0, "Win": 1, "Victory": 1, "Defeat": 0} label_tensor = torch.tensor( result_dict[sc2_replay.toonPlayerDescMap[0].toon_player_info.result], dtype=torch.int8, diff --git a/src/sc2_datasets/transforms/pytorch/economy_vs_outcome.py b/src/sc2_datasets/transforms/pytorch/economy_vs_outcome.py index 3db62f8..647b62e 100644 --- a/src/sc2_datasets/transforms/pytorch/economy_vs_outcome.py +++ b/src/sc2_datasets/transforms/pytorch/economy_vs_outcome.py @@ -51,9 +51,7 @@ def economy_average_vs_outcome( If you don't set parameters or paste incorect parameters' type. """ - average_player_features = average_player_stats( - player_tracker_events=sc2_replay.trackerEvents - ) + average_player_features = average_player_stats(sc2_replay) feature_list = [ player_features for player_features in average_player_features.values() ] @@ -61,7 +59,7 @@ def economy_average_vs_outcome( # Creating feature tensor: feature_tensor = torch.tensor(feature_list, dtype=torch.float32) - result_dict = {"Loss": 0, "Win": 1} + result_dict = {"Loss": 0, "Win": 1, "Victory": 1, "Defeat": 0} target = result_dict[sc2_replay.toonPlayerDescMap[0].toon_player_info.result] return feature_tensor, target diff --git a/src/sc2_datasets/transforms/utils.py b/src/sc2_datasets/transforms/utils.py index 0006e54..337c1d6 100644 --- a/src/sc2_datasets/transforms/utils.py +++ b/src/sc2_datasets/transforms/utils.py @@ -234,7 +234,7 @@ def select_outcome_1v1(sc2_replay: SC2ReplayData) -> Dict[str, int]: player_outcome = {"1": 0, "2": 0} - result_dict = {"Loss": 0, "Win": 1} + result_dict = {"Loss": 0, "Win": 1, "Victory": 1, "Defeat": 0} for toon_desc_map in sc2_replay.toonPlayerDescMap: result = result_dict[toon_desc_map.toon_player_info.result] player_outcome[toon_desc_map.toon_player_info.playerID] = result diff --git a/tests/test_cases/replay_data/replay_data_test.py b/tests/test_cases/replay_data/replay_data_test.py index a326e17..3bef866 100644 --- a/tests/test_cases/replay_data/replay_data_test.py +++ b/tests/test_cases/replay_data/replay_data_test.py @@ -1,6 +1,7 @@ import unittest import pytest +from pathlib import Path from sc2_datasets.replay_data.sc2_replay_data import SC2ReplayData import tests.test_utils.test_utils as test_utils @@ -33,4 +34,4 @@ def test_loading_json(self): def test_empty_json(self): # Empty json should raise a KeyError: with self.assertRaises(KeyError): - _ = SC2ReplayData(loaded_replay_object={}) + _ = SC2ReplayData(filepath=Path(""), loaded_replay_object={}) diff --git a/tests/test_cases/torch/__init__.py b/tests/test_cases/torch_tests/__init__.py similarity index 100% rename from tests/test_cases/torch/__init__.py rename to tests/test_cases/torch_tests/__init__.py diff --git a/tests/test_cases/torch/datasets/__init__.py b/tests/test_cases/torch_tests/datasets/__init__.py similarity index 100% rename from tests/test_cases/torch/datasets/__init__.py rename to tests/test_cases/torch_tests/datasets/__init__.py diff --git a/tests/test_cases/torch/datasets/sc2_dataset_test.py b/tests/test_cases/torch_tests/datasets/sc2_dataset_test.py similarity index 100% rename from tests/test_cases/torch/datasets/sc2_dataset_test.py rename to tests/test_cases/torch_tests/datasets/sc2_dataset_test.py diff --git a/tests/test_cases/torch/datasets/sc2_replaypack_dataset_test.py b/tests/test_cases/torch_tests/datasets/sc2_replaypack_dataset_test.py similarity index 100% rename from tests/test_cases/torch/datasets/sc2_replaypack_dataset_test.py rename to tests/test_cases/torch_tests/datasets/sc2_replaypack_dataset_test.py diff --git a/tests/test_cases/torch/sc2_egset_dataset_test.py b/tests/test_cases/torch_tests/sc2_egset_dataset_test.py similarity index 100% rename from tests/test_cases/torch/sc2_egset_dataset_test.py rename to tests/test_cases/torch_tests/sc2_egset_dataset_test.py diff --git a/tests/test_cases/transforms/pandas/playerstats_to_dict_test.py b/tests/test_cases/transforms/pandas/playerstats_to_dict_test.py index 5bae67d..5e9909a 100644 --- a/tests/test_cases/transforms/pandas/playerstats_to_dict_test.py +++ b/tests/test_cases/transforms/pandas/playerstats_to_dict_test.py @@ -1,3 +1,5 @@ +from pathlib import Path +from typing import List import unittest import pandas as pd @@ -20,63 +22,78 @@ class PlayerStatsToDictTest(unittest.TestCase): @classmethod def setUpClass(cls) -> None: - cls.test_replay = test_utils.get_specific_asset_path( - filename="test_replay.json" - ) - cls.sc2_replay_data = SC2ReplayData.from_file(replay_filepath=cls.test_replay) + list_of_test_filenames = ["test_replay.json", "test_replay_victory_defeat.json"] - def test_playerstats_to_dict(self): - res_dict = playerstats_to_dict(sc2_replay=self.sc2_replay_data) + cls.test_replays: List[Path] = [] + for filename in list_of_test_filenames: + cls.test_replays.append( + test_utils.get_specific_asset_path(filename=filename) + ) - # print(res_dict) + cls.sc2_replays_data: List[SC2ReplayData] = [] + for replay in cls.test_replays: + sc2_replay = SC2ReplayData.from_file(replay_filepath=replay) + cls.sc2_replays_data.append(sc2_replay) - # Type assertions for data: - for playerID, feature_dict in res_dict.items(): - self.assertIsInstance(playerID, str) - self.assertIsInstance(feature_dict, dict) - for key, feature_list in feature_dict.items(): - self.assertIsInstance(key, str) - self.assertIsInstance(feature_list, list) + def test_playerstats_to_dict(self): + for sc2_replay in self.sc2_replays_data: + with self.subTest(str(sc2_replay.filepath)): + res_dict = playerstats_to_dict(sc2_replay=sc2_replay) + + # Type assertions for data: + for playerID, feature_dict in res_dict.items(): + self.assertIsInstance(playerID, str) + self.assertIsInstance(feature_dict, dict) + for key, feature_list in feature_dict.items(): + self.assertIsInstance(key, str) + self.assertIsInstance(feature_list, list) def test_playerstats_to_dict_additional_data(self): additional_data = { "1": {"outcome": 1}, "2": {"outcome": 2}, } - - res_dict = playerstats_to_dict( - sc2_replay=self.sc2_replay_data, - additional_data_dict=additional_data, - ) - - # Type assertions for data: - for playerID, feature_dict in res_dict.items(): - self.assertIsInstance(playerID, str) - self.assertIsInstance(feature_dict, dict) - # Assertions for additional data: - self.assertTrue("outcome" in feature_dict) - for key, feature_list in feature_dict.items(): - self.assertIsInstance(key, str) - self.assertIsInstance(feature_list, list) + for sc2_replay in self.sc2_replays_data: + with self.subTest(str(sc2_replay.filepath)): + res_dict = playerstats_to_dict( + sc2_replay=sc2_replay, + additional_data_dict=additional_data, + ) + + # Type assertions for data: + for playerID, feature_dict in res_dict.items(): + self.assertIsInstance(playerID, str) + self.assertIsInstance(feature_dict, dict) + # Assertions for additional data: + self.assertTrue("outcome" in feature_dict) + for key, feature_list in feature_dict.items(): + self.assertIsInstance(key, str) + self.assertIsInstance(feature_list, list) def test_playerstats_average_to_dict(self): - res_dict = playerstats_average_to_dict(sc2_replay=self.sc2_replay_data) + for sc2_replay in self.sc2_replays_data: + with self.subTest(str(sc2_replay.filepath)): + res_dict = playerstats_average_to_dict(sc2_replay=sc2_replay) - # Type assertions for data: - self.assertIsInstance(res_dict, dict) - for key, value in res_dict.items(): - self.assertIsInstance(key, str) - self.assertIsInstance(value, dict) + # Type assertions for data: + self.assertIsInstance(res_dict, dict) + for key, value in res_dict.items(): + self.assertIsInstance(key, str) + self.assertIsInstance(value, dict) def test_average_playerstats_dataframe(self): - ps_dict = playerstats_to_dict(sc2_replay=self.sc2_replay_data) - for playerID, df_repr in ps_dict.items(): - # Initializing dataframe from dict: - dataframe = pd.DataFrame.from_dict(df_repr) - dict_average_repr = average_playerstats_dataframe(playerstats_df=dataframe) - - # Type assertions for the data: - self.assertIsInstance(playerID, str) - for key, value in dict_average_repr.items(): - self.assertIsInstance(key, str) - self.assertIsInstance(value, float) + for sc2_replay in self.sc2_replays_data: + with self.subTest(str(sc2_replay.filepath)): + ps_dict = playerstats_to_dict(sc2_replay=sc2_replay) + for playerID, df_repr in ps_dict.items(): + # Initializing dataframe from dict: + dataframe = pd.DataFrame.from_dict(df_repr) + dict_average_repr = average_playerstats_dataframe( + playerstats_df=dataframe + ) + + # Type assertions for the data: + self.assertIsInstance(playerID, str) + for key, value in dict_average_repr.items(): + self.assertIsInstance(key, str) + self.assertIsInstance(value, float) diff --git a/tests/test_files/test_replay_victory_defeat.json b/tests/test_files/test_replay_victory_defeat.json new file mode 100644 index 0000000..064d7f4 --- /dev/null +++ b/tests/test_files/test_replay_victory_defeat.json @@ -0,0 +1,286507 @@ +{ + "header": { + "elapsedGameLoops": 13142, + "version": "3.1.1.39948" + }, + "initData": { + "gameDescription": { + "gameOptions": { + "advancedSharedControl": false, + "amm": false, + "battleNet": true, + "clientDebugFlags": 9, + "competitive": false, + "cooperative": false, + "fog": 0, + "heroDuplicatesAllowed": true, + "lockTeams": true, + "noVictoryOrDefeat": false, + "observers": 0, + "practice": false, + "randomRaces": false, + "teamsTogether": false, + "userDifficulty": 0 + }, + "gameSpeed": "Faster", + "isBlizzardMap": true, + "mapAuthorName": "3-S2-2-29526", + "mapFileSyncChecksum": 2014297433, + "mapSizeX": 184, + "mapSizeY": 144, + "maxPlayers": 2 + } + }, + "details": { + "gameSpeed": "Faster", + "isBlizzardMap": true, + "timeUTC": "2016-02-01T20:23:43.4986119Z" + }, + "metadata": { + "baseBuild": "", + "dataBuild": "", + "gameVersion": "", + "mapName": "Ulrena" + }, + "messageEvents": [ + { + "evtTypeName": "Chat", + "id": 0, + "loop": 13095, + "recipient": 0, + "string": "gg", + "userid": { + "userId": 3 + } + } + ], + "gameEvents": [ + { + "baseBuildNum": 39576, + "buildNum": 39948, + "cameraFollow": false, + "debugPauseEnabled": false, + "developmentCheatsEnabled": false, + "evtTypeName": "UserOptions", + "gameFullyDownloaded": true, + "hotkeyProfile": "0_Default", + "id": 7, + "isMapToMapTransition": false, + "loop": 0, + "multiplayerCheatsEnabled": false, + "platformMac": false, + "syncChecksummingEnabled": false, + "testCheatsEnabled": false, + "useGalaxyAsserts": false, + "userid": { + "userId": 0 + }, + "versionFlags": 0 + }, + { + "baseBuildNum": 39576, + "buildNum": 39948, + "cameraFollow": false, + "debugPauseEnabled": false, + "developmentCheatsEnabled": false, + "evtTypeName": "UserOptions", + "gameFullyDownloaded": true, + "hotkeyProfile": "0_Default", + "id": 7, + "isMapToMapTransition": false, + "loop": 0, + "multiplayerCheatsEnabled": false, + "platformMac": false, + "syncChecksummingEnabled": false, + "testCheatsEnabled": false, + "useGalaxyAsserts": false, + "userid": { + "userId": 1 + }, + "versionFlags": 0 + }, + { + "baseBuildNum": 39576, + "buildNum": 39948, + "cameraFollow": false, + "debugPauseEnabled": false, + "developmentCheatsEnabled": false, + "evtTypeName": "UserOptions", + "gameFullyDownloaded": true, + "hotkeyProfile": "observer", + "id": 7, + "isMapToMapTransition": false, + "loop": 0, + "multiplayerCheatsEnabled": false, + "platformMac": false, + "syncChecksummingEnabled": false, + "testCheatsEnabled": false, + "useGalaxyAsserts": false, + "userid": { + "userId": 2 + }, + "versionFlags": 0 + }, + { + "baseBuildNum": 39576, + "buildNum": 39948, + "cameraFollow": false, + "debugPauseEnabled": false, + "developmentCheatsEnabled": false, + "evtTypeName": "UserOptions", + "gameFullyDownloaded": true, + "hotkeyProfile": "민철", + "id": 7, + "isMapToMapTransition": false, + "loop": 0, + "multiplayerCheatsEnabled": false, + "platformMac": false, + "syncChecksummingEnabled": false, + "testCheatsEnabled": false, + "useGalaxyAsserts": false, + "userid": { + "userId": 3 + }, + "versionFlags": 0 + }, + { + "baseBuildNum": 39576, + "buildNum": 39948, + "cameraFollow": false, + "debugPauseEnabled": false, + "developmentCheatsEnabled": false, + "evtTypeName": "UserOptions", + "gameFullyDownloaded": true, + "hotkeyProfile": "gg", + "id": 7, + "isMapToMapTransition": false, + "loop": 0, + "multiplayerCheatsEnabled": false, + "platformMac": false, + "syncChecksummingEnabled": false, + "testCheatsEnabled": false, + "useGalaxyAsserts": false, + "userid": { + "userId": 5 + }, + "versionFlags": 0 + }, + { + "baseBuildNum": 39576, + "buildNum": 39948, + "cameraFollow": false, + "debugPauseEnabled": false, + "developmentCheatsEnabled": false, + "evtTypeName": "UserOptions", + "gameFullyDownloaded": true, + "hotkeyProfile": "tod", + "id": 7, + "isMapToMapTransition": false, + "loop": 0, + "multiplayerCheatsEnabled": false, + "platformMac": false, + "syncChecksummingEnabled": false, + "testCheatsEnabled": false, + "useGalaxyAsserts": false, + "userid": { + "userId": 6 + }, + "versionFlags": 0 + }, + { + "evtTypeName": "GameUserLeave", + "id": 101, + "leaveReason": 12, + "loop": 0, + "userid": { + "userId": 4 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.4609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.406494140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.4609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.4609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.750244140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.4609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 15, + "otherUnit": null, + "sequence": 1, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 16, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 50069505, + 50331649, + 50593793 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 16, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 17, + "otherUnit": null, + "sequence": 1, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 50069505 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 19, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 55312385, + 56098817, + 56360961, + 57147393 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 19, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 65817, + "y": 89370, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 20, + "otherUnit": null, + "sequence": 2, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 53477377 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 21, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 23, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 23, + "userid": { + "userId": 2 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 74413, + "y": 434906, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 24, + "otherUnit": null, + "sequence": 2, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 25, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 10.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1835009, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 25, + "sequence": 3, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 28, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 8, + "y": 52.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 23068673, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 28, + "sequence": 3, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 31, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 8, + "y": 52.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 23068673, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 31, + "sequence": 4, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 56885249, + 57409537 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 32, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 34, + "target": { + "x": 8.8316650390625, + "y": 14.40869140625, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 34, + "sequence": 4, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 38, + "target": { + "x": 7.823486328125, + "y": 14.931396484375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 38, + "sequence": 5, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 39, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 41, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 45, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 45, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 46, + "target": { + "x": 13.9786376953125, + "y": 57.600830078125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 46, + "sequence": 5, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 46, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 50, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 51, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 53, + "target": { + "x": 13.328857421875, + "y": 54.1976318359375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 53, + "sequence": 6, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 56885249, + 57409537 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 53, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 56, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 14.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 56, + "sequence": 6, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 553741, + "y": 175802, + "z": 32770 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 60, + "otherUnit": null, + "sequence": 7, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 62, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 62, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 64, + "target": { + "x": 22.526611328125, + "y": 8.126953125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 64, + "sequence": 8, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 68, + "target": { + "x": 6.5648193359375, + "y": 13.5238037109375, + "z": 5.9945068359375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 68, + "sequence": 9, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 71, + "target": { + "x": 12.5113525390625, + "y": 13.5238037109375, + "z": 5.994140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 71, + "sequence": 10, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 75, + "target": { + "x": 12.8243408203125, + "y": 13.5238037109375, + "z": 5.994140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 75, + "sequence": 11, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 76, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 13.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 1310721, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 76, + "sequence": 10, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 79, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 0.790771484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 110587, + "y": 100701, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 84, + "otherUnit": null, + "sequence": 12, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 87, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CameraSave", + "id": 14, + "loop": 90, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "which": 0 + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 91, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 10, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52953089, + 53215233, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 97, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 98, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CameraSave", + "id": 14, + "loop": 99, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "which": 0 + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 9, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51642369, + 51904513, + 52166657, + 52428801, + 52953089, + 53215233, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 102, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 102, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 103, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 1.068603515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 105, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 0.9693603515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 11, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 106, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 108, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 109, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 109, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8858642578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 110, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 112, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 114, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 114, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 116, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.412841796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CameraSave", + "id": 14, + "loop": 116, + "target": { + "x": 1.5447998046875, + "y": 0.9495849609375 + }, + "userid": { + "userId": 5 + }, + "which": 1 + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 117, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 120, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 121, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 0.9495849609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 124, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 124, + "pitch": null, + "reason": null, + "target": { + "x": 2.112060546875, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 125, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 0.9495849609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 127, + "pitch": null, + "reason": null, + "target": { + "x": 2.131591796875, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 65536, + "y": 473088, + "z": 49104 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 23855105, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 128, + "otherUnit": null, + "sequence": 13, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 132, + "pitch": null, + "reason": null, + "target": { + "x": 2.1707763671875, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 135, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 135, + "pitch": null, + "reason": null, + "target": { + "x": 2.2098388671875, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 344 + } + ], + "addUnitTags": [ + 31719425 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 136, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 142, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 144, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 146, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.85107421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CameraSave", + "id": 14, + "loop": 146, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "which": 2 + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 149, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 149, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 150, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 150, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 0.9495849609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 153, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8193359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 153, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 155, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 157, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 0.9495849609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 161, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 161, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 164, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 0.9495849609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CameraSave", + "id": 14, + "loop": 165, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "which": 0 + }, + { + "evtTypeName": "CameraSave", + "id": 14, + "loop": 165, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "which": 2 + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 165, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 168, + "pitch": null, + "reason": null, + "target": { + "x": 3.1488037109375, + "y": 0.6717529296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CameraSave", + "id": 14, + "loop": 169, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "which": 1 + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 50331649 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 175, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 177, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CameraSave", + "id": 14, + "loop": 179, + "target": { + "x": 3.1292724609375, + "y": 0.65185546875 + }, + "userid": { + "userId": 5 + }, + "which": 3 + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 11, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 183, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 183, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 184, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 0.9495849609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 186, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 187, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 188, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 190, + "pitch": null, + "reason": null, + "target": { + "x": 3.1292724609375, + "y": 0.65185546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 191, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 192, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 195, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 196, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 196, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 199, + "otherUnit": null, + "sequence": 12, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 202, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 202, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 207, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 207, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 213, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 213, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 214, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 217, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 220, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 221, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 11, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56623105, + 56885249, + 57147393, + 57409537 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 222, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 222, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 10, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52953089, + 53215233, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 227, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 227, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 228, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 11, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52953089, + 53215233, + 53477377, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 232, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 233, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 236, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 238, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 239, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 239, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 0.9495849609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 203516, + "y": 123419, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 240, + "otherUnit": null, + "sequence": 13, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 240, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 0.9495849609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 242, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 243, + "target": { + "x": 25.0615234375, + "y": 15.1307373046875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 243, + "sequence": 14, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 244, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 246, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 246, + "sequence": 15, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 248, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 250, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 254, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 255, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 259, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 265, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 11, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57409537 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 265, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 265, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 274, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 277, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 280, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 281, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 285, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 287, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 291, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 291, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 294, + "otherUnit": null, + "sequence": 20, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 50331649 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 295, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 3, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 50331649 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 295, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 296, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 298, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 299, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 299, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 300, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 303, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 305, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 305, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 307, + "pitch": null, + "reason": null, + "target": { + "x": 0.802978515625, + "y": 0.8214111328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 309, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 313, + "target": { + "x": 17.8592529296875, + "y": 17.4664306640625, + "z": 5.99755859375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 313, + "sequence": 16, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 313, + "pitch": null, + "reason": null, + "target": { + "x": 0.71337890625, + "y": 0.7601318359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 314, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 76554, + "y": 435884, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 317, + "otherUnit": null, + "sequence": 21, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 317, + "target": { + "x": 17.978271484375, + "y": 17.490966796875, + "z": 5.9976806640625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 317, + "sequence": 17, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 317, + "pitch": null, + "reason": null, + "target": { + "x": 0.7464599609375, + "y": 0.78271484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 320, + "pitch": null, + "reason": null, + "target": { + "x": 0.78125, + "y": 0.8065185546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 321, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7286376953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 321, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 322, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 322, + "sequence": 22, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 322, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 322, + "pitch": null, + "reason": null, + "target": { + "x": 0.81689453125, + "y": 0.888671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 324, + "pitch": null, + "reason": null, + "target": { + "x": 0.8668212890625, + "y": 0.9384765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 324, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 325, + "pitch": null, + "reason": null, + "target": { + "x": 0.9317626953125, + "y": 0.9884033203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 326, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 326, + "pitch": null, + "reason": null, + "target": { + "x": 0.805419921875, + "y": 0.8287353515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 328, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 328, + "sequence": 23, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 328, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 329, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 331, + "pitch": null, + "reason": null, + "target": { + "x": 0.8299560546875, + "y": 0.864013671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 332, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 332, + "sequence": 24, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 332, + "pitch": null, + "reason": null, + "target": { + "x": 0.849609375, + "y": 0.888671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 333, + "target": { + "x": 17.3876953125, + "y": 17.6575927734375, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 333, + "sequence": 18, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 335, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 335, + "sequence": 25, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 335, + "pitch": null, + "reason": null, + "target": { + "x": 0.872802734375, + "y": 0.9171142578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 336, + "pitch": null, + "reason": null, + "target": { + "x": 0.89697265625, + "y": 0.9464111328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 337, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 337, + "sequence": 19, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 339, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 339, + "sequence": 26, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 339, + "pitch": null, + "reason": null, + "target": { + "x": 0.9212646484375, + "y": 0.9757080078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 340, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 343, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 343, + "sequence": 27, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 343, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 344, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 346, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 348, + "pitch": null, + "reason": null, + "target": { + "x": 0.9813232421875, + "y": 0.9541015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 348, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 350, + "pitch": null, + "reason": null, + "target": { + "x": 0.9813232421875, + "y": 0.9541015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 354, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 355, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 355, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 358, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 359, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 61440, + "y": 468992, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 28049409, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 361, + "otherUnit": null, + "sequence": 28, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 362, + "pitch": null, + "reason": null, + "target": { + "x": 1.0379638671875, + "y": 1.0050048828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 363, + "pitch": null, + "reason": null, + "target": { + "x": 1.0379638671875, + "y": 1.0050048828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 367, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 369, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 370, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 372, + "target": { + "x": 17.5333251953125, + "y": 17.9134521484375, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 372, + "sequence": 20, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 373, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 373, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 374, + "pitch": null, + "reason": null, + "target": { + "x": 0.78857421875, + "y": 3.0858154296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 376, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 376, + "pitch": null, + "reason": null, + "target": { + "x": 0.9244384765625, + "y": 2.949951171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 376, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 377, + "pitch": null, + "reason": null, + "target": { + "x": 1.180419921875, + "y": 2.883544921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 377, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7286376953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 378, + "pitch": null, + "reason": null, + "target": { + "x": 1.3258056640625, + "y": 2.883544921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 380, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 380, + "pitch": null, + "reason": null, + "target": { + "x": 1.4932861328125, + "y": 2.883544921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 381, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 381, + "pitch": null, + "reason": null, + "target": { + "x": 1.7650146484375, + "y": 2.883544921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 383, + "pitch": null, + "reason": null, + "target": { + "x": 1.9072265625, + "y": 2.883544921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 384, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 384, + "pitch": null, + "reason": null, + "target": { + "x": 2.06201171875, + "y": 2.883544921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 385, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 388, + "pitch": null, + "reason": null, + "target": { + "x": 0.748291015625, + "y": 0.7286376953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 388, + "pitch": null, + "reason": null, + "target": { + "x": 0.7882080078125, + "y": 0.752685546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 388, + "pitch": null, + "reason": null, + "target": { + "x": 2.06201171875, + "y": 2.795166015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 388, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 388, + "pitch": null, + "reason": null, + "target": { + "x": 2.06201171875, + "y": 2.6529541015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 389, + "pitch": null, + "reason": null, + "target": { + "x": 0.823486328125, + "y": 0.787841796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 389, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 389, + "pitch": null, + "reason": null, + "target": { + "x": 2.06201171875, + "y": 2.5107421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 391, + "pitch": null, + "reason": null, + "target": { + "x": 0.86181640625, + "y": 0.8262939453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 391, + "pitch": null, + "reason": null, + "target": { + "x": 2.06201171875, + "y": 2.406494140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 392, + "pitch": null, + "reason": null, + "target": { + "x": 0.9241943359375, + "y": 0.888671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 392, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 393, + "pitch": null, + "reason": null, + "target": { + "x": 0.9617919921875, + "y": 0.92626953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 393, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 395, + "pitch": null, + "reason": null, + "target": { + "x": 0.997802734375, + "y": 0.9622802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 143360, + "y": 147456, + "z": 49119 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 395, + "otherUnit": null, + "sequence": 25, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 395, + "pitch": null, + "reason": null, + "target": { + "x": 0.716064453125, + "y": 0.7413330078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 396, + "pitch": null, + "reason": null, + "target": { + "x": 1.0634765625, + "y": 1.02783203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 396, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 398, + "pitch": null, + "reason": null, + "target": { + "x": 1.093017578125, + "y": 1.064697265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 398, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 398, + "pitch": null, + "reason": null, + "target": { + "x": 0.757568359375, + "y": 0.769287109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 399, + "pitch": null, + "reason": null, + "target": { + "x": 0.794189453125, + "y": 0.7974853515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 249235, + "y": 306555, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 400, + "otherUnit": null, + "sequence": 29, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 149203, + "y": 136757, + "z": 49130 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 400, + "otherUnit": null, + "sequence": 26, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 402, + "pitch": null, + "reason": null, + "target": { + "x": 0.83935546875, + "y": 0.8349609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 403, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 403, + "pitch": null, + "reason": null, + "target": { + "x": 0.8841552734375, + "y": 0.8740234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 404, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 406, + "pitch": null, + "reason": null, + "target": { + "x": 0.932373046875, + "y": 0.9173583984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 407, + "pitch": null, + "reason": null, + "target": { + "x": 0.98046875, + "y": 0.961181640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 50593793, + 57671681 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 410, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 410, + "otherUnit": null, + "sequence": 30, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 410, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 410, + "pitch": null, + "reason": null, + "target": { + "x": 1.02880859375, + "y": 1.005615234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 50593793 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 411, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 411, + "pitch": null, + "reason": null, + "target": { + "x": 1.0743408203125, + "y": 1.0474853515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 414, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 415, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 417, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 418, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 11, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56623105, + 56885249, + 57147393, + 57409537 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 419, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 422, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 422, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 424, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 424, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 428, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 428, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 429, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 429, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 432, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 432, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 436, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 11, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56623105, + 56885249, + 57147393, + 57409537 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 436, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 436, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 437, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 439, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 441, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 61440, + "y": 468992, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 28049409, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 445, + "otherUnit": null, + "sequence": 31, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 486 + } + ], + "addUnitTags": [ + 1048577 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 447, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 343 + } + ], + "addUnitTags": [ + 1 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 451, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 452, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 454, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 454, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 458, + "pitch": null, + "reason": null, + "target": { + "x": 0.7840576171875, + "y": 3.02587890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 458, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 459, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 460, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 460, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 462, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 463, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 465, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 465, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 466, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 467, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 469, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 469, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 470, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 473, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 473, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 473, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 474, + "pitch": null, + "reason": null, + "target": { + "x": 0.9970703125, + "y": 0.9097900390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 478, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 480, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 480, + "otherUnit": null, + "sequence": 27, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 482, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 484, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 136198, + "y": 116583, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 485, + "otherUnit": null, + "sequence": 32, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 488, + "sequence": 33, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 488, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 489, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 492, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 492, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 493, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 496, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57409537 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 496, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 497, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 88064, + "y": 104448, + "z": 49104 + }, + "snapshotUnitLink": 39, + "snapshotUpkeepPlayerId": 2, + "tag": 54263809, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 500, + "otherUnit": null, + "sequence": 28, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 11, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 502, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 503, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 503, + "otherUnit": null, + "sequence": 29, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 506, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 507, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 507, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 510, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 511, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 65536, + "y": 124928, + "z": 49104 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 1, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 512, + "otherUnit": null, + "sequence": 30, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 514, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 517, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 61440, + "y": 468992, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 28049409, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 518, + "otherUnit": null, + "sequence": 34, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 518, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 521, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 522, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 525, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 525, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 528, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 528, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 8, + "y": 10.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 786433, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 528, + "sequence": 31, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 11, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52953089, + 53215233, + 53477377, + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 530, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 530, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 532, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 533, + "pitch": null, + "reason": null, + "target": { + "x": 0.849365234375, + "y": 2.8912353515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 536, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 537, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 537, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 540, + "pitch": null, + "reason": null, + "target": { + "x": 0.790771484375, + "y": 2.93115234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 541, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 543, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 544, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7879638671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 545, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 547, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 547, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 548, + "pitch": null, + "reason": null, + "target": { + "x": 0.8331298828125, + "y": 2.9215087890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 549, + "pitch": null, + "reason": null, + "target": { + "x": 0.695068359375, + "y": 3.29150390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 549, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 552, + "pitch": null, + "reason": null, + "target": { + "x": 1.044189453125, + "y": 1.0703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 552, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 554, + "pitch": null, + "reason": null, + "target": { + "x": 1.011474609375, + "y": 1.0703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 555, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57147393 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 555, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 558, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 558, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51118081, + 51904513, + 52166657, + 52690945, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 560, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 560, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 8, + "y": 15.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 1, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 560, + "sequence": 32, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 562, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 563, + "pitch": null, + "reason": null, + "target": { + "x": 1.04736328125, + "y": 1.0679931640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 564, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51380225, + 51642369, + 52428801, + 52953089, + 53215233 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 566, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 567, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 569, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 569, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 569, + "pitch": null, + "reason": null, + "target": { + "x": 1.0137939453125, + "y": 1.070068359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 571, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3017578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 571, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 573, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 58720257 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 573, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 573, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3017578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 577, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 578, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 578, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 8, + "y": 10.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 786433, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 578, + "sequence": 33, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 579, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 581, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 8, + "y": 10.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 786433, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 581, + "sequence": 34, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 582, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 584, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 8, + "y": 10.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 786433, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 584, + "sequence": 35, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 586, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3370361328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 588, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 588, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 8, + "y": 10.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 786433, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 588, + "sequence": 36, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 589, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 590, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 8, + "y": 10.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 786433, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 590, + "sequence": 37, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 592, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 593, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 593, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 8, + "y": 10.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 786433, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 593, + "sequence": 38, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 595, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 596, + "pitch": null, + "reason": null, + "target": { + "x": 0.8033447265625, + "y": 2.9310302734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51118081, + 51642369, + 51904513, + 52166657, + 52953089, + 53215233, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 599, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 599, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 600, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 600, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 600, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3338623046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 603, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3897705078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 603, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 607, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 608, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 610, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 610, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 611, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 614, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 9, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51642369, + 51904513, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 614, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 614, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 614, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3687744140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 615, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 616, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 1.05078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 618, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 618, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 619, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 619, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.445556640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 621, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 622, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 623, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 625, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3577880859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 626, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 629, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 631, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 631, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 631, + "target": { + "x": 17.758056640625, + "y": 16.8631591796875, + "z": 5.9974365234375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 631, + "sequence": 39, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 634, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 634, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 636, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 637, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 637, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 638, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 640, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 640, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 641, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 642, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 644, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 644, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 645, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 648, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 648, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 649, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 651, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 655, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 655, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 655, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 656, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 659, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 660, + "pitch": null, + "reason": null, + "target": { + "x": 1.09521484375, + "y": 1.0523681640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 662, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 663, + "pitch": null, + "reason": null, + "target": { + "x": 0.8046875, + "y": 2.791748046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 664, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 664, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 666, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 666, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 668, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 670, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 1.066650390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 670, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 671, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 673, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 674, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 674, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 675, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 675, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 678, + "pitch": null, + "reason": null, + "target": { + "x": 0.7242431640625, + "y": 0.7955322265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 678, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 678, + "pitch": null, + "reason": null, + "target": { + "x": 1.11328125, + "y": 1.070556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 679, + "pitch": null, + "reason": null, + "target": { + "x": 0.783447265625, + "y": 0.811279296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 679, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 679, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 682, + "pitch": null, + "reason": null, + "target": { + "x": 0.8592529296875, + "y": 0.8531494140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 682, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 683, + "pitch": null, + "reason": null, + "target": { + "x": 0.889892578125, + "y": 0.87646484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 683, + "pitch": null, + "reason": null, + "target": { + "x": 0.938720703125, + "y": 0.9146728515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 683, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 685, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 686, + "pitch": null, + "reason": null, + "target": { + "x": 0.991943359375, + "y": 0.9754638671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 686, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 688, + "pitch": null, + "reason": null, + "target": { + "x": 1.032470703125, + "y": 1.0091552734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 689, + "pitch": null, + "reason": null, + "target": { + "x": 1.11328125, + "y": 1.070556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 689, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 11, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51118081, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 693, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 693, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 693, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 3, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 694, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 694, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 697, + "pitch": null, + "reason": null, + "target": { + "x": 1.11328125, + "y": 1.070556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 699, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 57671681, + 58458113 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 700, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 701, + "otherUnit": null, + "sequence": 35, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 50069506 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 703, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 57671681 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 703, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 703, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 705, + "sequence": 36, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 58458113 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 707, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 711, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 711, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 65536, + "y": 473088, + "z": 49104 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 23855105, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 715, + "otherUnit": null, + "sequence": 37, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 715, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 716, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 719, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 8, + "y": 57.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 23855105, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 719, + "sequence": 38, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 719, + "pitch": null, + "reason": null, + "target": { + "x": 1.11328125, + "y": 1.070556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 720, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 722, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 8, + "y": 57.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 23855105, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 722, + "sequence": 39, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 724, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 726, + "otherUnit": null, + "sequence": 40, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 727, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 57.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 28049409, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 727, + "sequence": 40, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 731, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 733, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 11, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52953089, + 53215233, + 53739521, + 58195969 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 734, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 737, + "pitch": null, + "reason": null, + "target": { + "x": 0.8992919921875, + "y": 2.6036376953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 737, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 737, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 738, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 738, + "pitch": null, + "reason": null, + "target": { + "x": 0.8992919921875, + "y": 2.6036376953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 741, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 741, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 742, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 742, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 745, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 746, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 748, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 57344, + "y": 96256, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 524289, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 748, + "otherUnit": null, + "sequence": 41, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 749, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 750, + "pitch": null, + "reason": null, + "target": { + "x": 1.0789794921875, + "y": 1.0377197265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 750, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 752, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 752, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 753, + "pitch": null, + "reason": null, + "target": { + "x": 1.1180419921875, + "y": 1.0587158203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 753, + "pitch": null, + "reason": null, + "target": { + "x": 1.1531982421875, + "y": 1.0833740234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 753, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 755, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 755, + "pitch": null, + "reason": null, + "target": { + "x": 1.11328125, + "y": 1.070556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 755, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 756, + "pitch": null, + "reason": null, + "target": { + "x": 1.1817626953125, + "y": 1.09765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 759, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 760, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 764, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 764, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 12 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 766, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 767, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 767, + "pitch": null, + "reason": null, + "target": { + "x": 1.11328125, + "y": 1.070556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 768, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 771, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 771, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 772, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 774, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 774, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 775, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 776, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 778, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 778, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 779, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 781, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 782, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7685546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 782, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 13.75, + "z": 5.998046875 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 262145, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 782, + "sequence": 42, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 783, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.445556640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 783, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7685546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 785, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 786, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 786, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 787, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 790, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 793, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 793, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 794, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 797, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 797, + "pitch": null, + "reason": null, + "target": { + "x": 1.11328125, + "y": 1.0677490234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 798, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 801, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 50331650 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 802, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 804, + "target": { + "x": 17.7435302734375, + "y": 16.844970703125, + "z": 5.9974365234375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 804, + "sequence": 43, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 807, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 808, + "otherUnit": null, + "sequence": 41, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 809, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 50331650 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 809, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 811, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 812, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 57671681 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 813, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 813, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 815, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 818, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 818, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 344 + } + ], + "addUnitTags": [ + 31457281 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 819, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 823, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3101806640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 823, + "pitch": null, + "reason": null, + "target": { + "x": 0.8201904296875, + "y": 3.2154541015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 824, + "pitch": null, + "reason": null, + "target": { + "x": 0.959228515625, + "y": 3.2154541015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 824, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 14.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 824, + "sequence": 44, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 826, + "pitch": null, + "reason": null, + "target": { + "x": 1.1046142578125, + "y": 3.2154541015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 827, + "pitch": null, + "reason": null, + "target": { + "x": 1.3699951171875, + "y": 3.2154541015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 828, + "pitch": null, + "reason": null, + "target": { + "x": 1.502685546875, + "y": 3.2154541015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 830, + "pitch": null, + "reason": null, + "target": { + "x": 1.575439453125, + "y": 3.2154541015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 833, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 834, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 214861, + "y": 421693, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 835, + "otherUnit": null, + "sequence": 42, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 837, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 837, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 839, + "target": { + "x": 26.165283203125, + "y": 51.4581298828125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 839, + "sequence": 43, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 839, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 842, + "target": { + "x": 26.1337890625, + "y": 51.44873046875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 842, + "sequence": 44, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 844, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 844, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 846, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 848, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 848, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 14.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 848, + "sequence": 45, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 849, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 850, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 14.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 850, + "sequence": 46, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 10, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52953089, + 53215233, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 853, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 853, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 14.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 853, + "sequence": 47, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 344 + } + ], + "addUnitTags": [ + 31457281 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 854, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 854, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 856, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 860, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 860, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 860, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 860, + "pitch": null, + "reason": null, + "target": { + "x": 1.11328125, + "y": 1.0509033203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 864, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 864, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 867, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 868, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 871, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7325439453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 871, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 57344, + "y": 460800, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23592961, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 876, + "otherUnit": null, + "sequence": 45, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 121 + }, + "cmdFlags": 131328, + "data": { + "TargetPoint": { + "x": 145408, + "y": 137216, + "z": 49119 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 878, + "otherUnit": null, + "sequence": 56, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 883, + "pitch": null, + "reason": null, + "target": { + "x": 0.71484375, + "y": 3.42578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 883, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 885, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 885, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 885, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 885, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7357177734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 886, + "pitch": null, + "reason": null, + "target": { + "x": 0.7391357421875, + "y": 3.402099609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 887, + "pitch": null, + "reason": null, + "target": { + "x": 0.83154296875, + "y": 2.5341796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 889, + "pitch": null, + "reason": null, + "target": { + "x": 0.7659912109375, + "y": 3.3759765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 889, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 889, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 891, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 893, + "pitch": null, + "reason": null, + "target": { + "x": 0.79541015625, + "y": 3.3472900390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 893, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 895, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 895, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 897, + "pitch": null, + "reason": null, + "target": { + "x": 0.826416015625, + "y": 3.3173828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 897, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 897, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 900, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 901, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 902, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2220458984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 902, + "pitch": null, + "reason": null, + "target": { + "x": 0.8519287109375, + "y": 3.2930908203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 902, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 904, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 904, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 904, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2220458984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 905, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 905, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 908, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 909, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 909, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 911, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 912, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 913, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 915, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 915, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 916, + "pitch": null, + "reason": null, + "target": { + "x": 0.875732421875, + "y": 3.2713623046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 917, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 919, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 56885249 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 919, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 921, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2884521484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 921, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 923, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3267822265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 92099, + "y": 124763, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 923, + "otherUnit": null, + "sequence": 58, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 924, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3924560546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 57671681 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 926, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 930, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 930, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2623291015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 931, + "pitch": null, + "reason": null, + "target": { + "x": 1.158447265625, + "y": 1.048828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 58458113 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 931, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 932, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 9.75, + "y": 16.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 2097153, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 932, + "sequence": 59, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 932, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3038330078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 935, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.34912109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 937, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 50331650 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 937, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 937, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7841796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 938, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 938, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8583984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 938, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3865966796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 939, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 941, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 1.046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 941, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 942, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 942, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 943, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 945, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 945, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 946, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 947, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 947, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 9.75, + "y": 16.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 2097153, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 947, + "sequence": 60, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 58458113 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 950, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 957, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 960, + "pitch": null, + "reason": null, + "target": { + "x": 1.126953125, + "y": 1.0474853515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 964, + "userid": { + "userId": 0 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 57344, + "y": 444416, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23330817, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 965, + "otherUnit": null, + "sequence": 46, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 969, + "pitch": null, + "reason": null, + "target": { + "x": 1.051513671875, + "y": 1.019775390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 969, + "pitch": null, + "reason": null, + "target": { + "x": 1.017822265625, + "y": 1.0003662109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 969, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 54.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23330817, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 969, + "sequence": 47, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 969, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 972, + "pitch": null, + "reason": null, + "target": { + "x": 0.9443359375, + "y": 0.9598388671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 973, + "pitch": null, + "reason": null, + "target": { + "x": 0.8797607421875, + "y": 0.9298095703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 973, + "pitch": null, + "reason": null, + "target": { + "x": 0.841552734375, + "y": 0.9088134765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 973, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 54.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23330817, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 973, + "sequence": 48, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 975, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 976, + "pitch": null, + "reason": null, + "target": { + "x": 0.7874755859375, + "y": 0.8758544921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 978, + "pitch": null, + "reason": null, + "target": { + "x": 0.7523193359375, + "y": 0.8428955078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 978, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 54.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23330817, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 978, + "sequence": 49, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 57671682 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 978, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 980, + "pitch": null, + "reason": null, + "target": { + "x": 0.72607421875, + "y": 0.8143310546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 980, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 54.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23330817, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 980, + "sequence": 50, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 991, + "userid": { + "userId": 1 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 79872, + "y": 133120, + "z": 49104 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 2097153, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 991, + "otherUnit": null, + "sequence": 69, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 993, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 56.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23592961, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 993, + "sequence": 51, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 993, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 994, + "pitch": null, + "reason": null, + "target": { + "x": 0.8992919921875, + "y": 2.2645263671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 995, + "pitch": null, + "reason": null, + "target": { + "x": 0.8992919921875, + "y": 2.2645263671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 997, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 999, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1001, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1002, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1005, + "pitch": null, + "reason": null, + "target": { + "x": 0.7042236328125, + "y": 0.8369140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1005, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8369140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1005, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1005, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1006, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1008, + "pitch": null, + "reason": null, + "target": { + "x": 1.0557861328125, + "y": 0.9879150390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1009, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1009, + "pitch": null, + "reason": null, + "target": { + "x": 1.0557861328125, + "y": 0.9879150390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1010, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 61440, + "y": 120832, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1010, + "otherUnit": null, + "sequence": 70, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1014, + "userid": { + "userId": 1 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1016, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 14.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1016, + "sequence": 71, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1017, + "pitch": null, + "reason": null, + "target": { + "x": 0.7232666015625, + "y": 0.8084716796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1019, + "pitch": null, + "reason": null, + "target": { + "x": 0.7232666015625, + "y": 0.8084716796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 57344, + "y": 444416, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23330817, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1024, + "otherUnit": null, + "sequence": 52, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1024, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1028, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1030, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1031, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1035, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1035, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1035, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51380225 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1038, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1038, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1039, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1042, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1042, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1046, + "pitch": null, + "reason": null, + "target": { + "x": 0.7552490234375, + "y": 0.8084716796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 57344, + "y": 460800, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23592961, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1046, + "otherUnit": null, + "sequence": 53, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1046, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1046, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1047, + "pitch": null, + "reason": null, + "target": { + "x": 0.788818359375, + "y": 0.8084716796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1047, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1049, + "pitch": null, + "reason": null, + "target": { + "x": 0.8272705078125, + "y": 0.8084716796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1050, + "pitch": null, + "reason": null, + "target": { + "x": 0.8944091796875, + "y": 0.8460693359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1050, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 56.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23592961, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1050, + "sequence": 54, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1050, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1051, + "pitch": null, + "reason": null, + "target": { + "x": 0.9295654296875, + "y": 0.8812255859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1051, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1053, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 56.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23592961, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1053, + "sequence": 55, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1054, + "pitch": null, + "reason": null, + "target": { + "x": 0.755859375, + "y": 0.8134765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1056, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1057, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1057, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 56.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23592961, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1057, + "sequence": 56, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1057, + "pitch": null, + "reason": null, + "target": { + "x": 0.7952880859375, + "y": 0.8272705078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1058, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 14.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1058, + "sequence": 73, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1060, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 56.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23592961, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1060, + "sequence": 57, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1060, + "otherUnit": null, + "sequence": 72, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1060, + "pitch": null, + "reason": null, + "target": { + "x": 0.8289794921875, + "y": 0.8404541015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1061, + "pitch": null, + "reason": null, + "target": { + "x": 0.8634033203125, + "y": 0.854248046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 50069506 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1062, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1062, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 56.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23592961, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1062, + "sequence": 58, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1064, + "pitch": null, + "reason": null, + "target": { + "x": 0.8984375, + "y": 0.8685302734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1068, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1068, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.38037109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1068, + "pitch": null, + "reason": null, + "target": { + "x": 0.9287109375, + "y": 0.880859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1069, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1069, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1071, + "pitch": null, + "reason": null, + "target": { + "x": 0.8896484375, + "y": 0.877197265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1072, + "pitch": null, + "reason": null, + "target": { + "x": 0.855224609375, + "y": 0.8428955078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1072, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1072, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1073, + "pitch": null, + "reason": null, + "target": { + "x": 0.8160400390625, + "y": 0.8035888671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1073, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1075, + "pitch": null, + "reason": null, + "target": { + "x": 0.777587890625, + "y": 0.7652587890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1075, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1076, + "pitch": null, + "reason": null, + "target": { + "x": 0.7264404296875, + "y": 0.6988525390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1077, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1079, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1080, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1080, + "pitch": null, + "reason": null, + "target": { + "x": 0.89306640625, + "y": 0.85595703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1082, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1082, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1082, + "pitch": null, + "reason": null, + "target": { + "x": 0.8682861328125, + "y": 0.8338623046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1083, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.4136962890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1083, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1084, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1084, + "pitch": null, + "reason": null, + "target": { + "x": 0.838134765625, + "y": 0.8057861328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1086, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1086, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1086, + "pitch": null, + "reason": null, + "target": { + "x": 0.806396484375, + "y": 0.775634765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1087, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1087, + "pitch": null, + "reason": null, + "target": { + "x": 0.77294921875, + "y": 0.7435302734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1088, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1090, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1090, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1090, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1090, + "pitch": null, + "reason": null, + "target": { + "x": 0.7420654296875, + "y": 0.7138671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1092, + "pitch": null, + "reason": null, + "target": { + "x": 0.7264404296875, + "y": 0.75244140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1095, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1097, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 54.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23330817, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1097, + "sequence": 59, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1098, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1101, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1103, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1103, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1103, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1105, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1105, + "pitch": null, + "reason": null, + "target": { + "x": 0.726318359375, + "y": 0.7425537109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1106, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1108, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1108, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1109, + "pitch": null, + "reason": null, + "target": { + "x": 0.8603515625, + "y": 2.2818603515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1109, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1112, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1112, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1113, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1113, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1114, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1114, + "pitch": null, + "reason": null, + "target": { + "x": 0.729736328125, + "y": 0.8668212890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1114, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1116, + "pitch": null, + "reason": null, + "target": { + "x": 0.75830078125, + "y": 0.8841552734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1116, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1117, + "pitch": null, + "reason": null, + "target": { + "x": 0.7950439453125, + "y": 0.89990234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1117, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1117, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1118, + "pitch": null, + "reason": null, + "target": { + "x": 0.8287353515625, + "y": 0.9140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1118, + "pitch": null, + "reason": null, + "target": { + "x": 0.872314453125, + "y": 0.9290771484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1120, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1120, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1121, + "pitch": null, + "reason": null, + "target": { + "x": 0.9307861328125, + "y": 0.9493408203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1121, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1121, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1124, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1125, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1125, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1127, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1128, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1129, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1131, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1132, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1132, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1134, + "pitch": null, + "reason": null, + "target": { + "x": 0.832763671875, + "y": 3.297607421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1135, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1136, + "pitch": null, + "reason": null, + "target": { + "x": 1.120361328125, + "y": 3.218505859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1136, + "pitch": null, + "reason": null, + "target": { + "x": 1.2593994140625, + "y": 3.218505859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1136, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1136, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1138, + "pitch": null, + "reason": null, + "target": { + "x": 1.29736328125, + "y": 3.218505859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1138, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1140, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1142, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 59768833 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1144, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1144, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1146, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1146, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1149, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1149, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1150, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1154, + "pitch": null, + "reason": null, + "target": { + "x": 1.523193359375, + "y": 3.097412109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1155, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3416748046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1155, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1157, + "pitch": null, + "reason": null, + "target": { + "x": 1.65283203125, + "y": 3.097412109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1157, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3416748046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1158, + "pitch": null, + "reason": null, + "target": { + "x": 1.74755859375, + "y": 3.097412109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 61440, + "y": 120832, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1159, + "otherUnit": null, + "sequence": 74, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1164, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1166, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1166, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1168, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1169, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1170, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3768310546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1172, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.41455078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1175, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1175, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1176, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 210944, + "y": 423936, + "z": 40906 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1176, + "otherUnit": null, + "sequence": 60, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1177, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1179, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1179, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1180, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1180, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3751220703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1181, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1181, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1181, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1183, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1183, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 13.75, + "z": 5.998046875 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 262145, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1183, + "sequence": 75, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1184, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1184, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 50069506 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1185, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1185, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.40869140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1187, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1190, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1190, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1191, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1192, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1194, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1195, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1195, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1198, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1199, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1202, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CameraSave", + "id": 14, + "loop": 1205, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "which": 1 + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1207, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1209, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.0225830078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1209, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1210, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.0225830078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1213, + "pitch": null, + "reason": null, + "target": { + "x": 1.6790771484375, + "y": 3.2010498046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1213, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 208896, + "y": 448512, + "z": 40912 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 0, + "targetUnitFlags": 175, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1216, + "otherUnit": null, + "sequence": 61, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1216, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1218, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.07373046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1220, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.110595703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1220, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1220, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1221, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1221, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.072509765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1222, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.018798828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1224, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1225, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1225, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1228, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1228, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.056396484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1229, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 230669, + "y": 403872, + "z": 40942 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1229, + "otherUnit": null, + "sequence": 62, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1229, + "otherUnit": null, + "sequence": 76, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1232, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1232, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.087890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1233, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.1697998046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1235, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.203369140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1235, + "pitch": null, + "reason": null, + "target": { + "x": 1.5977783203125, + "y": 3.298828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1236, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 60030977 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1237, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1237, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1239, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.1241455078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1242, + "pitch": null, + "reason": null, + "target": { + "x": 1.63134765625, + "y": 3.2169189453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1242, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1243, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1243, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1243, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.1580810546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1244, + "otherUnit": null, + "sequence": 63, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 60030977 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1246, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1247, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1247, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1247, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.189697265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1250, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1251, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1251, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1251, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1254, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1254, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1255, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 57344, + "y": 96256, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 524289, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1255, + "otherUnit": null, + "sequence": 77, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1258, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1259, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1262, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 79872, + "y": 423936, + "z": 49104 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 31457281, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1265, + "otherUnit": null, + "sequence": 64, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1266, + "pitch": null, + "reason": null, + "target": { + "x": 1.5579833984375, + "y": 3.2928466796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1268, + "pitch": null, + "reason": null, + "target": { + "x": 1.4859619140625, + "y": 3.3018798828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1268, + "pitch": null, + "reason": null, + "target": { + "x": 1.291015625, + "y": 3.337890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1270, + "pitch": null, + "reason": null, + "target": { + "x": 0.957275390625, + "y": 3.4024658203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1270, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1272, + "pitch": null, + "reason": null, + "target": { + "x": 0.77197265625, + "y": 3.4332275390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1272, + "pitch": null, + "reason": null, + "target": { + "x": 0.7098388671875, + "y": 3.4437255859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 60030977 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1273, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1273, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1276, + "pitch": null, + "reason": null, + "target": { + "x": 1.114501953125, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1277, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 9.75, + "y": 51.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 31457281, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1277, + "sequence": 65, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1277, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1277, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1277, + "pitch": null, + "reason": null, + "target": { + "x": 1.114501953125, + "y": 0.9481201171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1284, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1284, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1285, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1287, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1288, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1288, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1292, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.4017333984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1292, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1292, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1294, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3695068359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1294, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1295, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3358154296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1298, + "pitch": null, + "reason": null, + "target": { + "x": 1.054443359375, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1298, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1299, + "pitch": null, + "reason": null, + "target": { + "x": 0.9896240234375, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 61440, + "y": 436224, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1299, + "otherUnit": null, + "sequence": 66, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1299, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1300, + "pitch": null, + "reason": null, + "target": { + "x": 0.9544677734375, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1302, + "pitch": null, + "reason": null, + "target": { + "x": 0.9144287109375, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1303, + "pitch": null, + "reason": null, + "target": { + "x": 0.8504638671875, + "y": 0.9136962890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1303, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1303, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1303, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1304, + "pitch": null, + "reason": null, + "target": { + "x": 0.8160400390625, + "y": 0.8792724609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1304, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1306, + "pitch": null, + "reason": null, + "target": { + "x": 0.7872314453125, + "y": 0.8504638671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1306, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1306, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1306, + "pitch": null, + "reason": null, + "target": { + "x": 1.0767822265625, + "y": 0.9476318359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1307, + "pitch": null, + "reason": null, + "target": { + "x": 0.742919921875, + "y": 3.31396484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1309, + "pitch": null, + "reason": null, + "target": { + "x": 0.8419189453125, + "y": 3.2989501953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1309, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1309, + "pitch": null, + "reason": null, + "target": { + "x": 1.031982421875, + "y": 0.940185546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1310, + "pitch": null, + "reason": null, + "target": { + "x": 0.994140625, + "y": 0.9295654296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1311, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1311, + "pitch": null, + "reason": null, + "target": { + "x": 1.013671875, + "y": 3.272705078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 60817409 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1311, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1313, + "pitch": null, + "reason": null, + "target": { + "x": 1.08642578125, + "y": 3.2652587890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1313, + "pitch": null, + "reason": null, + "target": { + "x": 1.1427001953125, + "y": 3.262939453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1313, + "otherUnit": null, + "sequence": 67, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1313, + "pitch": null, + "reason": null, + "target": { + "x": 0.9532470703125, + "y": 0.91552734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 60817409 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1314, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1314, + "pitch": null, + "reason": null, + "target": { + "x": 0.91162109375, + "y": 0.89990234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1315, + "pitch": null, + "reason": null, + "target": { + "x": 1.229736328125, + "y": 3.2591552734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1317, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1317, + "pitch": null, + "reason": null, + "target": { + "x": 1.2889404296875, + "y": 3.25390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1317, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1317, + "pitch": null, + "reason": null, + "target": { + "x": 0.867431640625, + "y": 0.882568359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1318, + "pitch": null, + "reason": null, + "target": { + "x": 1.369873046875, + "y": 3.2479248046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1318, + "pitch": null, + "reason": null, + "target": { + "x": 0.8243408203125, + "y": 0.8653564453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1320, + "pitch": null, + "reason": null, + "target": { + "x": 0.739990234375, + "y": 0.80322265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1320, + "pitch": null, + "reason": null, + "target": { + "x": 1.4239501953125, + "y": 3.241943359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1320, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1321, + "pitch": null, + "reason": null, + "target": { + "x": 1.4749755859375, + "y": 3.2381591796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1321, + "pitch": null, + "reason": null, + "target": { + "x": 0.794921875, + "y": 0.853515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1322, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.733642578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 60030977 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1322, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1324, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1324, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 79872, + "y": 423936, + "z": 49104 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 31457281, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1325, + "otherUnit": null, + "sequence": 68, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1326, + "pitch": null, + "reason": null, + "target": { + "x": 0.7685546875, + "y": 0.8323974609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1328, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1328, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1329, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1329, + "pitch": null, + "reason": null, + "target": { + "x": 0.7467041015625, + "y": 0.8067626953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1330, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1332, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1332, + "pitch": null, + "reason": null, + "target": { + "x": 0.720703125, + "y": 0.7747802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1333, + "pitch": null, + "reason": null, + "target": { + "x": 1.4224853515625, + "y": 3.2381591796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 235271, + "y": 406690, + "z": 40788 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1333, + "otherUnit": null, + "sequence": 69, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1333, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1333, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1335, + "pitch": null, + "reason": null, + "target": { + "x": 1.35498046875, + "y": 3.24560546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1335, + "pitch": null, + "reason": null, + "target": { + "x": 1.305419921875, + "y": 3.251708984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1336, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1336, + "pitch": null, + "reason": null, + "target": { + "x": 0.6954345703125, + "y": 0.7435302734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1337, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1337, + "pitch": null, + "reason": null, + "target": { + "x": 1.1832275390625, + "y": 3.27197265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1337, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1339, + "pitch": null, + "reason": null, + "target": { + "x": 1.1224365234375, + "y": 3.283935546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1339, + "pitch": null, + "reason": null, + "target": { + "x": 1.0482177734375, + "y": 3.303466796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1340, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1340, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1340, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1341, + "pitch": null, + "reason": null, + "target": { + "x": 0.9754638671875, + "y": 3.3289794921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1341, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1343, + "pitch": null, + "reason": null, + "target": { + "x": 0.9251708984375, + "y": 3.3514404296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1343, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1344, + "pitch": null, + "reason": null, + "target": { + "x": 0.8607177734375, + "y": 3.3724365234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1346, + "pitch": null, + "reason": null, + "target": { + "x": 0.826904296875, + "y": 3.3785400390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1346, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1346, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1347, + "pitch": null, + "reason": null, + "target": { + "x": 0.7789306640625, + "y": 3.383056640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 208896, + "y": 448512, + "z": 40912 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 0, + "targetUnitFlags": 175, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1348, + "otherUnit": null, + "sequence": 70, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1350, + "pitch": null, + "reason": null, + "target": { + "x": 0.7362060546875, + "y": 3.38671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1350, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1351, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1351, + "pitch": null, + "reason": null, + "target": { + "x": 0.6927490234375, + "y": 3.396484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1351, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1354, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1355, + "userid": { + "userId": 0 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 230967, + "y": 408240, + "z": 40942 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1355, + "otherUnit": null, + "sequence": 71, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1355, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1358, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1358, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1359, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1363, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1363, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1365, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1365, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1367, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1367, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1369, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1369, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1372, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1372, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1372, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1373, + "pitch": null, + "reason": null, + "target": { + "x": 0.7442626953125, + "y": 0.7392578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1374, + "pitch": null, + "reason": null, + "target": { + "x": 0.77783203125, + "y": 0.7728271484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1376, + "pitch": null, + "reason": null, + "target": { + "x": 0.81787109375, + "y": 0.8128662109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1376, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1377, + "pitch": null, + "reason": null, + "target": { + "x": 0.8818359375, + "y": 0.8768310546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1377, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1378, + "pitch": null, + "reason": null, + "target": { + "x": 0.922607421875, + "y": 0.917724609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 208896, + "y": 448512, + "z": 40912 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 0, + "targetUnitFlags": 175, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1378, + "otherUnit": null, + "sequence": 72, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1380, + "pitch": null, + "reason": null, + "target": { + "x": 0.9578857421875, + "y": 0.952880859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1381, + "pitch": null, + "reason": null, + "target": { + "x": 1.02099609375, + "y": 1.0001220703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1381, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1381, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1381, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1381, + "pitch": null, + "reason": null, + "target": { + "x": 0.727783203125, + "y": 0.75732421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 229652, + "y": 405615, + "z": 40942 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1384, + "otherUnit": null, + "sequence": 73, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1384, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1384, + "pitch": null, + "reason": null, + "target": { + "x": 0.75634765625, + "y": 0.77978515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1385, + "pitch": null, + "reason": null, + "target": { + "x": 0.794677734375, + "y": 0.8111572265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1387, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1387, + "pitch": null, + "reason": null, + "target": { + "x": 0.833740234375, + "y": 0.8433837890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1388, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1389, + "pitch": null, + "reason": null, + "target": { + "x": 0.8819580078125, + "y": 0.8836669921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1391, + "pitch": null, + "reason": null, + "target": { + "x": 0.8968505859375, + "y": 1.962646484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1391, + "pitch": null, + "reason": null, + "target": { + "x": 0.906494140625, + "y": 0.9041748046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1392, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1392, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1392, + "pitch": null, + "reason": null, + "target": { + "x": 0.9534912109375, + "y": 0.9434814453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1393, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1393, + "pitch": null, + "reason": null, + "target": { + "x": 0.979248046875, + "y": 0.965087890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1395, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1395, + "pitch": null, + "reason": null, + "target": { + "x": 1.0125732421875, + "y": 0.9930419921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1396, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1398, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1399, + "pitch": null, + "reason": null, + "target": { + "x": 0.8968505859375, + "y": 1.89306640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1399, + "pitch": null, + "reason": null, + "target": { + "x": 0.8968505859375, + "y": 1.73828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1399, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1400, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1400, + "pitch": null, + "reason": null, + "target": { + "x": 0.8968505859375, + "y": 1.5928955078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1402, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1402, + "pitch": null, + "reason": null, + "target": { + "x": 0.8968505859375, + "y": 1.45068359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1403, + "pitch": null, + "reason": null, + "target": { + "x": 0.8968505859375, + "y": 1.16943359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1403, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1404, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1404, + "pitch": null, + "reason": null, + "target": { + "x": 0.8968505859375, + "y": 1.0272216796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1406, + "pitch": null, + "reason": null, + "target": { + "x": 0.8968505859375, + "y": 0.8819580078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1406, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1406, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1407, + "pitch": null, + "reason": null, + "target": { + "x": 0.8968505859375, + "y": 0.796630859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1408, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1408, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1410, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1410, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 144590, + "y": 99003, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1411, + "otherUnit": null, + "sequence": 74, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1414, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1414, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1415, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1417, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 50069506 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1418, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1418, + "pitch": null, + "reason": null, + "target": { + "x": 1.320556640625, + "y": 2.83837890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1418, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1421, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1422, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1422, + "pitch": null, + "reason": null, + "target": { + "x": 1.48486328125, + "y": 2.7025146484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1422, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1424, + "pitch": null, + "reason": null, + "target": { + "x": 1.6270751953125, + "y": 2.560302734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1424, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1425, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1425, + "pitch": null, + "reason": null, + "target": { + "x": 1.9083251953125, + "y": 2.279052734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1425, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1426, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1428, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1429, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1430, + "pitch": null, + "reason": null, + "target": { + "x": 0.9761962890625, + "y": 1.0001220703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1430, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 59244545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1430, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1432, + "pitch": null, + "reason": null, + "target": { + "x": 0.94189453125, + "y": 1.0001220703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1433, + "pitch": null, + "reason": null, + "target": { + "x": 0.8721923828125, + "y": 1.0001220703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1433, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1434, + "pitch": null, + "reason": null, + "target": { + "x": 0.837890625, + "y": 1.0001220703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1434, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1434, + "otherUnit": null, + "sequence": 78, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1436, + "target": { + "x": 30.998779296875, + "y": 36.7918701171875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1436, + "sequence": 75, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1439, + "sequence": 79, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1440, + "target": { + "x": 30.6104736328125, + "y": 36.7244873046875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1440, + "sequence": 76, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1440, + "pitch": null, + "reason": null, + "target": { + "x": 0.9739990234375, + "y": 1 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1443, + "target": { + "x": 30.2489013671875, + "y": 36.541015625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1443, + "sequence": 77, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1443, + "pitch": null, + "reason": null, + "target": { + "x": 0.9302978515625, + "y": 1 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1444, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.2818603515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 79872, + "y": 133120, + "z": 49104 + }, + "snapshotUnitLink": 41, + "snapshotUpkeepPlayerId": 2, + "tag": 58458114, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1444, + "otherUnit": null, + "sequence": 80, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1444, + "pitch": null, + "reason": null, + "target": { + "x": 0.8984375, + "y": 1 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1445, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.2818603515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1447, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.32177734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1447, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1448, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1448, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1449, + "pitch": null, + "reason": null, + "target": { + "x": 1.9208984375, + "y": 2.1336669921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1449, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1451, + "pitch": null, + "reason": null, + "target": { + "x": 1.9208984375, + "y": 1.9757080078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1451, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1452, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.364990234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1452, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1452, + "pitch": null, + "reason": null, + "target": { + "x": 1.9208984375, + "y": 1.716552734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1452, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1454, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.4017333984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1454, + "pitch": null, + "reason": null, + "target": { + "x": 1.9208984375, + "y": 1.5711669921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1454, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1455, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.457763671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1455, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1455, + "pitch": null, + "reason": null, + "target": { + "x": 1.9208984375, + "y": 1.441650390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1456, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1456, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1458, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1458, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.318603515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1459, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1460, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1460, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1462, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1462, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.3521728515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1463, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1463, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1465, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1465, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1465, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.391357421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1467, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.41455078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1467, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.43310546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1469, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.3778076171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1470, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 266, + "data": { + "TargetPoint": { + "x": 203876, + "y": 213551, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1471, + "otherUnit": null, + "sequence": 78, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1473, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8043212890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1475, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1477, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1480, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57409537 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1481, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1481, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.3946533203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1482, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1484, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1485, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1485, + "target": { + "x": 12.52685546875, + "y": 13.16357421875, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1485, + "sequence": 81, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1488, + "target": { + "x": 12.8426513671875, + "y": 12.8704833984375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1488, + "sequence": 82, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1489, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1489, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1492, + "sequence": 83, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1493, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8531494140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1493, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.844482421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1493, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1495, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1495, + "otherUnit": null, + "sequence": 84, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1499, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1499, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1499, + "sequence": 85, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 79872, + "y": 133120, + "z": 49104 + }, + "snapshotUnitLink": 41, + "snapshotUpkeepPlayerId": 2, + "tag": 58458114, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1500, + "otherUnit": null, + "sequence": 86, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1501, + "pitch": null, + "reason": null, + "target": { + "x": 1.5643310546875, + "y": 3.04248046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1503, + "pitch": null, + "reason": null, + "target": { + "x": 1.603515625, + "y": 3.0625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1503, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1503, + "pitch": null, + "reason": null, + "target": { + "x": 1.5643310546875, + "y": 3.04248046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1504, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 3.0625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1504, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1504, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1506, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1506, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1508, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1511, + "userid": { + "userId": 1 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 236704, + "y": 407122, + "z": 40538 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1511, + "otherUnit": null, + "sequence": 79, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545, + 61079553 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1511, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1511, + "pitch": null, + "reason": null, + "target": { + "x": 1.5977783203125, + "y": 3.0499267578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1512, + "pitch": null, + "reason": null, + "target": { + "x": 1.681396484375, + "y": 3.11767578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1512, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1514, + "pitch": null, + "reason": null, + "target": { + "x": 1.681396484375, + "y": 3.1568603515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1514, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1514, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1515, + "pitch": null, + "reason": null, + "target": { + "x": 1.681396484375, + "y": 3.213623046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1515, + "pitch": null, + "reason": null, + "target": { + "x": 1.6317138671875, + "y": 3.05859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1517, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1518, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1518, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1519, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1519, + "pitch": null, + "reason": null, + "target": { + "x": 1.65380859375, + "y": 3.08544921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1521, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1521, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 14.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1521, + "sequence": 87, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1522, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1522, + "pitch": null, + "reason": null, + "target": { + "x": 1.664306640625, + "y": 3.1202392578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1523, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1525, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1526, + "pitch": null, + "reason": null, + "target": { + "x": 1.672119140625, + "y": 3.15966796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1527, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1529, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1529, + "pitch": null, + "reason": null, + "target": { + "x": 1.6793212890625, + "y": 3.201416015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 61603841 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1530, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 79872, + "y": 423936, + "z": 49104 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 31457281, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1536, + "otherUnit": null, + "sequence": 80, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1537, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1538, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1538, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1544, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1544, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 50069506 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1544, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 149 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1545, + "otherUnit": null, + "sequence": 88, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 28, + "unitLink": 69 + } + ], + "addUnitTags": [ + 50069506 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1547, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1547, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1549, + "pitch": null, + "reason": null, + "target": { + "x": 1.1910400390625, + "y": 1.114013671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1549, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1549, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1551, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1552, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1552, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1558, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 58720257, + 59244545, + 61079553 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1558, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1558, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1559, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1562, + "pitch": null, + "reason": null, + "target": { + "x": 1.5252685546875, + "y": 2.52392578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1563, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1563, + "pitch": null, + "reason": null, + "target": { + "x": 1.5252685546875, + "y": 2.52392578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1564, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1567, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1567, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 1.0274658203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1569, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 61341697 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1571, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1571, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1573, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1575, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 1.0274658203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1581, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 60817409 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1581, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1584, + "pitch": null, + "reason": null, + "target": { + "x": 1.5252685546875, + "y": 2.573486328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1585, + "pitch": null, + "reason": null, + "target": { + "x": 1.5252685546875, + "y": 2.640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 61865985 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1585, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1585, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 0.9495849609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 96469, + "y": 434948, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1586, + "otherUnit": null, + "sequence": 81, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1589, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1590, + "target": { + "x": 11.7095947265625, + "y": 52.5281982421875, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1590, + "sequence": 82, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 133120, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 0, + "targetUnitFlags": 175, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1592, + "otherUnit": null, + "sequence": 89, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1592, + "pitch": null, + "reason": null, + "target": { + "x": 1.5252685546875, + "y": 2.5626220703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1593, + "target": { + "x": 11.708251953125, + "y": 52.477783203125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1593, + "sequence": 83, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 266, + "data": { + "TargetPoint": { + "x": 207189, + "y": 129520, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1596, + "otherUnit": null, + "sequence": 90, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1596, + "pitch": null, + "reason": null, + "target": { + "x": 1.5252685546875, + "y": 2.5965576171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1599, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1599, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1599, + "pitch": null, + "reason": null, + "target": { + "x": 1.5252685546875, + "y": 2.630126953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1601, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1601, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1603, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": 9199, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1607, + "pitch": null, + "reason": null, + "target": { + "x": 1.2320556640625, + "y": 1.132080078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1607, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": 9802, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1608, + "pitch": null, + "reason": null, + "target": { + "x": 1.278564453125, + "y": 1.1563720703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1611, + "pitch": null, + "reason": null, + "target": { + "x": 1.0166015625, + "y": 1.626220703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1611, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3607177734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545, + 61079553 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1611, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1611, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": 10557, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1612, + "pitch": null, + "reason": null, + "target": { + "x": 1.3419189453125, + "y": 1.208251953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1612, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2154541015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1612, + "pitch": null, + "reason": null, + "target": { + "x": 1.0166015625, + "y": 1.626220703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": 10857, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1614, + "pitch": null, + "reason": null, + "target": { + "x": 1.37548828125, + "y": 1.23681640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1614, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1616, + "pitch": null, + "reason": null, + "target": { + "x": 1.406982421875, + "y": 1.261962890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1616, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1618, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1620, + "pitch": null, + "reason": null, + "target": { + "x": 1.2318115234375, + "y": 1.0079345703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1620, + "pitch": null, + "reason": null, + "target": { + "x": 1.4310302734375, + "y": 1.285400390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1622, + "pitch": null, + "reason": null, + "target": { + "x": 1.2318115234375, + "y": 1.0478515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 61440, + "y": 120832, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1622, + "otherUnit": null, + "sequence": 91, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1622, + "pitch": null, + "reason": null, + "target": { + "x": 1.2318115234375, + "y": 1.0079345703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1623, + "pitch": null, + "reason": null, + "target": { + "x": 1.4759521484375, + "y": 1.3123779296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1623, + "otherUnit": null, + "sequence": 92, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1625, + "pitch": null, + "reason": null, + "target": { + "x": 1.52099609375, + "y": 1.3345947265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1626, + "pitch": null, + "reason": null, + "target": { + "x": 1.5555419921875, + "y": 1.3502197265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1627, + "pitch": null, + "reason": null, + "target": { + "x": 1.5843505859375, + "y": 1.365478515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1629, + "pitch": null, + "reason": null, + "target": { + "x": 1.6199951171875, + "y": 1.3843994140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1630, + "pitch": null, + "reason": null, + "target": { + "x": 1.6724853515625, + "y": 1.4171142578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1633, + "pitch": null, + "reason": null, + "target": { + "x": 1.7093505859375, + "y": 1.454833984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545, + 61079553 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1633, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1634, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8201904296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1634, + "pitch": null, + "reason": null, + "target": { + "x": 1.73974609375, + "y": 1.4971923828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1634, + "pitch": null, + "reason": null, + "target": { + "x": 1.2318115234375, + "y": 1.0408935546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1636, + "pitch": null, + "reason": null, + "target": { + "x": 1.761962890625, + "y": 1.5250244140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1636, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1637, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1637, + "pitch": null, + "reason": null, + "target": { + "x": 1.791259765625, + "y": 1.563720703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1637, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1638, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7886962890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1640, + "pitch": null, + "reason": null, + "target": { + "x": 1.806884765625, + "y": 1.59912109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1640, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1641, + "pitch": null, + "reason": null, + "target": { + "x": 1.81884765625, + "y": 1.630615234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1641, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1644, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 92160, + "y": 428032, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1645, + "otherUnit": null, + "sequence": 92, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1645, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1648, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1648, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1649, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 65536, + "y": 124928, + "z": 49104 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 1, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1649, + "otherUnit": null, + "sequence": 93, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1652, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1653, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1653, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1655, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 0.688720703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1656, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1656, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1656, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 0.688720703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57147393 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1659, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 58195969, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1662, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1663, + "pitch": null, + "reason": null, + "target": { + "x": 1.8245849609375, + "y": 1.66845703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1663, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1666, + "pitch": null, + "reason": null, + "target": { + "x": 1.824951171875, + "y": 1.7291259765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1666, + "target": { + "x": 9.7020263671875, + "y": 11.454345703125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1666, + "sequence": 94, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1667, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1667, + "pitch": null, + "reason": null, + "target": { + "x": 1.82373046875, + "y": 1.8043212890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1667, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1667, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1668, + "pitch": null, + "reason": null, + "target": { + "x": 1.822509765625, + "y": 1.84033203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1670, + "pitch": null, + "reason": null, + "target": { + "x": 1.8206787109375, + "y": 1.874267578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1670, + "otherUnit": null, + "sequence": 95, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1671, + "pitch": null, + "reason": null, + "target": { + "x": 0.7562255859375, + "y": 0.688720703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1671, + "pitch": null, + "reason": null, + "target": { + "x": 1.8212890625, + "y": 1.9510498046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1671, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1672, + "pitch": null, + "reason": null, + "target": { + "x": 1.8212890625, + "y": 1.9951171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1672, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1674, + "pitch": null, + "reason": null, + "target": { + "x": 1.822265625, + "y": 2.0413818359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1674, + "sequence": 96, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1675, + "pitch": null, + "reason": null, + "target": { + "x": 0.740234375, + "y": 0.734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1675, + "pitch": null, + "reason": null, + "target": { + "x": 1.8321533203125, + "y": 2.1103515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 61440, + "y": 120832, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1675, + "otherUnit": null, + "sequence": 97, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 61341697 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1677, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1678, + "pitch": null, + "reason": null, + "target": { + "x": 1.82763671875, + "y": 2.1566162109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1679, + "pitch": null, + "reason": null, + "target": { + "x": 1.8272705078125, + "y": 2.190185546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1679, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1681, + "pitch": null, + "reason": null, + "target": { + "x": 0.790283203125, + "y": 0.69580078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1682, + "pitch": null, + "reason": null, + "target": { + "x": 1.8284912109375, + "y": 2.22314453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1682, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1683, + "pitch": null, + "reason": null, + "target": { + "x": 1.83056640625, + "y": 2.25732421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1685, + "pitch": null, + "reason": null, + "target": { + "x": 1.83056640625, + "y": 2.2943115234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1685, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1685, + "pitch": null, + "reason": null, + "target": { + "x": 0.7613525390625, + "y": 0.7169189453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1688, + "pitch": null, + "reason": null, + "target": { + "x": 1.83154296875, + "y": 2.339599609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257, + 61079553 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1688, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1688, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257, + 61079553 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1689, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1689, + "pitch": null, + "reason": null, + "target": { + "x": 1.8330078125, + "y": 2.3809814453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1690, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1693, + "pitch": null, + "reason": null, + "target": { + "x": 1.836669921875, + "y": 2.4176025390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1693, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1694, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1696, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1697, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1697, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1698, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1703, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257, + 61079553, + 62128129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1704, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1705, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1707, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545, + 61079553, + 62128129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1711, + "userid": { + "userId": 0 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1711, + "otherUnit": null, + "sequence": 99, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1711, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 61341697 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1712, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1716, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 60030978 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1716, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1716, + "pitch": null, + "reason": null, + "target": { + "x": 1.8426513671875, + "y": 2.3624267578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1716, + "pitch": null, + "reason": null, + "target": { + "x": 1.843505859375, + "y": 2.3134765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1718, + "pitch": null, + "reason": null, + "target": { + "x": 1.84375, + "y": 2.2630615234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1718, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1719, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1719, + "pitch": null, + "reason": null, + "target": { + "x": 1.84765625, + "y": 2.1673583984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1720, + "pitch": null, + "reason": null, + "target": { + "x": 1.8492431640625, + "y": 2.10888671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1722, + "pitch": null, + "reason": null, + "target": { + "x": 1.849853515625, + "y": 2.0587158203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1722, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1723, + "pitch": null, + "reason": null, + "target": { + "x": 1.8531494140625, + "y": 1.9759521484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 79872, + "y": 423936, + "z": 49104 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 60030978, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1723, + "otherUnit": null, + "sequence": 100, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1724, + "pitch": null, + "reason": null, + "target": { + "x": 1.8533935546875, + "y": 1.9429931640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545, + 61079553, + 62128129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1726, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1727, + "pitch": null, + "reason": null, + "target": { + "x": 1.8546142578125, + "y": 1.9090576171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1727, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 9.75, + "y": 51.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 60030978, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1727, + "sequence": 101, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1727, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1730, + "pitch": null, + "reason": null, + "target": { + "x": 1.8560791015625, + "y": 1.876708984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1731, + "pitch": null, + "reason": null, + "target": { + "x": 1.8570556640625, + "y": 1.8436279296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1731, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1733, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1735, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1735, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1737, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1737, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1737, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1739, + "target": { + "x": 11.5546875, + "y": 14.2510986328125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1739, + "sequence": 98, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1741, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3017578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1741, + "pitch": null, + "reason": null, + "target": { + "x": 0.9595947265625, + "y": 1.5667724609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1742, + "otherUnit": null, + "sequence": 99, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1742, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3017578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1744, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1744, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1746, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1746, + "sequence": 100, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1748, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 65536, + "y": 124928, + "z": 49104 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 1, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1749, + "otherUnit": null, + "sequence": 101, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1750, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1752, + "pitch": null, + "reason": null, + "target": { + "x": 1.843505859375, + "y": 1.88720703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1752, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1752, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1753, + "pitch": null, + "reason": null, + "target": { + "x": 1.841064453125, + "y": 1.9288330078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1753, + "pitch": null, + "reason": null, + "target": { + "x": 0.9595947265625, + "y": 1.4403076171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1753, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1755, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1755, + "pitch": null, + "reason": null, + "target": { + "x": 0.9595947265625, + "y": 1.2982177734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1755, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1756, + "pitch": null, + "reason": null, + "target": { + "x": 1.8291015625, + "y": 1.9771728515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1756, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1756, + "pitch": null, + "reason": null, + "target": { + "x": 0.9595947265625, + "y": 1.0643310546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1756, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1759, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1760, + "pitch": null, + "reason": null, + "target": { + "x": 0.737060546875, + "y": 3.3138427734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1760, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1761, + "pitch": null, + "reason": null, + "target": { + "x": 0.7730712890625, + "y": 3.349853515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 58720257, + 59244545, + 61079553, + 62128129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1761, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1761, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1763, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1764, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1764, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1767, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1767, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1767, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1768, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1768, + "pitch": null, + "reason": null, + "target": { + "x": 0.7171630859375, + "y": 3.317626953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1770, + "target": { + "x": 17.899169921875, + "y": 15.5626220703125, + "z": 5.9970703125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1770, + "sequence": 102, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1771, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1772, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1772, + "pitch": null, + "reason": null, + "target": { + "x": 1.109619140625, + "y": 1.065185546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1772, + "pitch": null, + "reason": null, + "target": { + "x": 0.7490234375, + "y": 3.3359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1774, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 14.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1774, + "sequence": 102, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1778, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1778, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 62390273 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1783, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1785, + "userid": { + "userId": 1 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1785, + "otherUnit": null, + "sequence": 103, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257, + 61079553, + 62128129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1785, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1785, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 62390273 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1786, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1786, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1789, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1790, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 61341697 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1794, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1794, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1794, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1797, + "pitch": null, + "reason": null, + "target": { + "x": 1.1259765625, + "y": 0.9998779296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 79872, + "y": 423936, + "z": 49104 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 60030978, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1797, + "otherUnit": null, + "sequence": 104, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1797, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1801, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1804, + "pitch": null, + "reason": null, + "target": { + "x": 1.0654296875, + "y": 1.0936279296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1804, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1805, + "pitch": null, + "reason": null, + "target": { + "x": 0.982177734375, + "y": 1.13720703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1805, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1807, + "pitch": null, + "reason": null, + "target": { + "x": 0.9521484375, + "y": 1.1544189453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1807, + "pitch": null, + "reason": null, + "target": { + "x": 0.9229736328125, + "y": 1.1746826171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 231796, + "y": 402476, + "z": 40604 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1807, + "otherUnit": null, + "sequence": 105, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1808, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1809, + "pitch": null, + "reason": null, + "target": { + "x": 0.8411865234375, + "y": 1.232421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1809, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1811, + "pitch": null, + "reason": null, + "target": { + "x": 0.796142578125, + "y": 1.272216796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1811, + "pitch": null, + "reason": null, + "target": { + "x": 0.7684326171875, + "y": 1.2999267578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1811, + "pitch": null, + "reason": null, + "target": { + "x": 1.13134765625, + "y": 1.03564453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1811, + "target": { + "x": 28.31982421875, + "y": 49.147705078125, + "z": 4.9547119140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1811, + "sequence": 106, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1812, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.0823974609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1813, + "target": { + "x": 28.4830322265625, + "y": 49.322998046875, + "z": 4.957763671875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1813, + "sequence": 107, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1813, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1813, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.0823974609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1817, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1820, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.115234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1820, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.1495361328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1820, + "pitch": null, + "reason": null, + "target": { + "x": 1.656494140625, + "y": 2.5230712890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1822, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.1888427734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1823, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1824, + "pitch": null, + "reason": null, + "target": { + "x": 0.815673828125, + "y": 1.281982421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1826, + "pitch": null, + "reason": null, + "target": { + "x": 0.8531494140625, + "y": 1.272216796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1826, + "pitch": null, + "reason": null, + "target": { + "x": 1.656494140625, + "y": 2.371337890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1827, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1827, + "pitch": null, + "reason": null, + "target": { + "x": 0.9072265625, + "y": 1.26171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1827, + "pitch": null, + "reason": null, + "target": { + "x": 0.9810791015625, + "y": 1.2940673828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1828, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1828, + "pitch": null, + "reason": null, + "target": { + "x": 0.9810791015625, + "y": 1.2435302734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1828, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.1158447265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1830, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1833, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1833, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.15234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 28, + "unitLink": 69 + } + ], + "addUnitTags": [ + 50069506 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1834, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1834, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1835, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 28, + "unitLink": 69 + } + ], + "addUnitTags": [ + 50069506 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1837, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1837, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.1856689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1838, + "pitch": null, + "reason": null, + "target": { + "x": 0.9810791015625, + "y": 1.1392822265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1839, + "pitch": null, + "reason": null, + "target": { + "x": 0.9810791015625, + "y": 1.060302734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1839, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1839, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1841, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1842, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1842, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 146241, + "y": 127242, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1843, + "otherUnit": null, + "sequence": 108, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1845, + "pitch": null, + "reason": null, + "target": { + "x": 0.9468994140625, + "y": 1.2489013671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1845, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1848, + "pitch": null, + "reason": null, + "target": { + "x": 0.9791259765625, + "y": 1.2271728515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1849, + "pitch": null, + "reason": null, + "target": { + "x": 1.0062255859375, + "y": 1.2054443359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1849, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1850, + "pitch": null, + "reason": null, + "target": { + "x": 1.0369873046875, + "y": 1.18212890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1850, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1852, + "target": { + "x": 18.46484375, + "y": 15.7386474609375, + "z": 5.9970703125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1852, + "sequence": 109, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1854, + "target": { + "x": 18.7266845703125, + "y": 15.7386474609375, + "z": 5.9970703125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1854, + "sequence": 110, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1857, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1859, + "target": { + "x": 18.9830322265625, + "y": 15.755859375, + "z": 5.9970703125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1859, + "sequence": 111, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1860, + "pitch": null, + "reason": null, + "target": { + "x": 1.0714111328125, + "y": 1.1558837890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1861, + "target": { + "x": 19.7823486328125, + "y": 15.965576171875, + "z": 5.9970703125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1861, + "sequence": 112, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1861, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1865, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1867, + "pitch": null, + "reason": null, + "target": { + "x": 1.7767333984375, + "y": 2.483642578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1868, + "pitch": null, + "reason": null, + "target": { + "x": 1.6956787109375, + "y": 2.4859619140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1869, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1871, + "pitch": null, + "reason": null, + "target": { + "x": 1.7208251953125, + "y": 2.24462890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1872, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1872, + "pitch": null, + "reason": null, + "target": { + "x": 1.7208251953125, + "y": 2.24462890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1874, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1876, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 61341697, + 62390273 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1880, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1884, + "pitch": null, + "reason": null, + "target": { + "x": 1.0948486328125, + "y": 1.2672119140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1886, + "pitch": null, + "reason": null, + "target": { + "x": 1.134033203125, + "y": 1.2872314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1886, + "pitch": null, + "reason": null, + "target": { + "x": 1.0948486328125, + "y": 1.2672119140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1887, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1889, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1891, + "pitch": null, + "reason": null, + "target": { + "x": 1.715087890625, + "y": 2.4678955078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1893, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1893, + "pitch": null, + "reason": null, + "target": { + "x": 1.715087890625, + "y": 2.42041015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1894, + "pitch": null, + "reason": null, + "target": { + "x": 1.715087890625, + "y": 2.262451171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1894, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1895, + "pitch": null, + "reason": null, + "target": { + "x": 1.715087890625, + "y": 2.1202392578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1897, + "pitch": null, + "reason": null, + "target": { + "x": 1.715087890625, + "y": 1.9591064453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1898, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1898, + "pitch": null, + "reason": null, + "target": { + "x": 1.8040771484375, + "y": 2.449462890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1898, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1898, + "pitch": null, + "reason": null, + "target": { + "x": 1.715087890625, + "y": 1.8895263671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1898, + "pitch": null, + "reason": null, + "target": { + "x": 1.1229248046875, + "y": 1.281494140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1900, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1901, + "pitch": null, + "reason": null, + "target": { + "x": 1.8193359375, + "y": 2.418212890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1902, + "pitch": null, + "reason": null, + "target": { + "x": 1.093994140625, + "y": 1.2471923828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1902, + "pitch": null, + "reason": null, + "target": { + "x": 1.831298828125, + "y": 2.3770751953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1904, + "pitch": null, + "reason": null, + "target": { + "x": 1.0604248046875, + "y": 1.213623046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1905, + "pitch": null, + "reason": null, + "target": { + "x": 0.9915771484375, + "y": 1.144775390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1905, + "pitch": null, + "reason": null, + "target": { + "x": 1.8450927734375, + "y": 2.326171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1905, + "pitch": null, + "reason": null, + "target": { + "x": 1.715087890625, + "y": 1.76953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1905, + "pitch": null, + "reason": null, + "target": { + "x": 1.715087890625, + "y": 1.6273193359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1906, + "pitch": null, + "reason": null, + "target": { + "x": 0.9683837890625, + "y": 1.104736328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1906, + "pitch": null, + "reason": null, + "target": { + "x": 1.85888671875, + "y": 2.2784423828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1906, + "pitch": null, + "reason": null, + "target": { + "x": 1.715087890625, + "y": 1.5198974609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1906, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1908, + "pitch": null, + "reason": null, + "target": { + "x": 0.9683837890625, + "y": 1.0711669921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1909, + "pitch": null, + "reason": null, + "target": { + "x": 0.9683837890625, + "y": 1.0072021484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1909, + "target": { + "x": 26.3602294921875, + "y": 24.0880126953125, + "z": 4.0477294921875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1909, + "sequence": 113, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1909, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1910, + "pitch": null, + "reason": null, + "target": { + "x": 0.9683837890625, + "y": 0.971923828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1910, + "pitch": null, + "reason": null, + "target": { + "x": 1.8681640625, + "y": 2.24658203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1910, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1910, + "pitch": null, + "reason": null, + "target": { + "x": 1.102783203125, + "y": 1.2540283203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1912, + "pitch": null, + "reason": null, + "target": { + "x": 0.9683837890625, + "y": 0.930419921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1912, + "target": { + "x": 25.8839111328125, + "y": 24.3629150390625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1912, + "sequence": 114, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1912, + "pitch": null, + "reason": null, + "target": { + "x": 1.0823974609375, + "y": 1.2257080078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1913, + "pitch": null, + "reason": null, + "target": { + "x": 0.9683837890625, + "y": 0.89111328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1913, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1915, + "target": { + "x": 24.8597412109375, + "y": 25.1500244140625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1915, + "sequence": 115, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1915, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1915, + "pitch": null, + "reason": null, + "target": { + "x": 1.064208984375, + "y": 1.1929931640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1916, + "pitch": null, + "reason": null, + "target": { + "x": 1.045654296875, + "y": 1.15087890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": 10734, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1917, + "pitch": null, + "reason": null, + "target": { + "x": 1.869140625, + "y": 2.203369140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1917, + "target": { + "x": 24.458984375, + "y": 25.471435546875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1917, + "sequence": 116, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1919, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1919, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1919, + "pitch": null, + "reason": null, + "target": { + "x": 1.0301513671875, + "y": 1.1075439453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1920, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1920, + "pitch": null, + "reason": null, + "target": { + "x": 1.0147705078125, + "y": 1.0579833984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1921, + "pitch": null, + "reason": null, + "target": { + "x": 1.869384765625, + "y": 2.1646728515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1923, + "pitch": null, + "reason": null, + "target": { + "x": 1, + "y": 1.0068359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1924, + "pitch": null, + "reason": null, + "target": { + "x": 1.0272216796875, + "y": 1.3704833984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1924, + "pitch": null, + "reason": null, + "target": { + "x": 0.9864501953125, + "y": 0.9578857421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1927, + "pitch": null, + "reason": null, + "target": { + "x": 0.9228515625, + "y": 0.89111328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1927, + "pitch": null, + "reason": null, + "target": { + "x": 0.885986328125, + "y": 0.89111328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1927, + "pitch": null, + "reason": null, + "target": { + "x": 1.87060546875, + "y": 2.1290283203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1927, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1927, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1927, + "pitch": null, + "reason": null, + "target": { + "x": 0.9736328125, + "y": 0.9107666015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1928, + "pitch": null, + "reason": null, + "target": { + "x": 0.845947265625, + "y": 0.8663330078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1930, + "pitch": null, + "reason": null, + "target": { + "x": 0.8123779296875, + "y": 0.832763671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1930, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1931, + "pitch": null, + "reason": null, + "target": { + "x": 0.755615234375, + "y": 0.7760009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1931, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1931, + "otherUnit": null, + "sequence": 104, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1932, + "pitch": null, + "reason": null, + "target": { + "x": 1.8751220703125, + "y": 2.0966796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1932, + "pitch": null, + "reason": null, + "target": { + "x": 0.9517822265625, + "y": 0.884765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1935, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1935, + "pitch": null, + "reason": null, + "target": { + "x": 0.91943359375, + "y": 0.86962890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1936, + "target": { + "x": 18.7525634765625, + "y": 25.307373046875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1936, + "sequence": 117, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1936, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1938, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1938, + "pitch": null, + "reason": null, + "target": { + "x": 0.888427734375, + "y": 0.852783203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1939, + "pitch": null, + "reason": null, + "target": { + "x": 1.8778076171875, + "y": 2.0537109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1939, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 180224, + "y": 129024, + "z": 40928 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 11534337, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1939, + "otherUnit": null, + "sequence": 105, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1939, + "pitch": null, + "reason": null, + "target": { + "x": 0.857421875, + "y": 0.835205078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1941, + "pitch": null, + "reason": null, + "target": { + "x": 1.105224609375, + "y": 1.12744140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1941, + "pitch": null, + "reason": null, + "target": { + "x": 1.04296875, + "y": 1.3167724609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1941, + "pitch": null, + "reason": null, + "target": { + "x": 0.822509765625, + "y": 0.81494140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1942, + "pitch": null, + "reason": null, + "target": { + "x": 1.8792724609375, + "y": 2.0189208984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1942, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1942, + "pitch": null, + "reason": null, + "target": { + "x": 1.2388916015625, + "y": 1.026123046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1943, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1943, + "pitch": null, + "reason": null, + "target": { + "x": 1.14794921875, + "y": 1.1229248046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1943, + "pitch": null, + "reason": null, + "target": { + "x": 1.881103515625, + "y": 1.9820556640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1943, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1943, + "pitch": null, + "reason": null, + "target": { + "x": 1.2388916015625, + "y": 0.9754638671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1943, + "pitch": null, + "reason": null, + "target": { + "x": 0.7845458984375, + "y": 0.7928466796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1945, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 22.5, + "y": 16.25, + "z": 4.99609375 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1945, + "sequence": 106, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1946, + "pitch": null, + "reason": null, + "target": { + "x": 1.882080078125, + "y": 1.94482421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1946, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1947, + "pitch": null, + "reason": null, + "target": { + "x": 1.18994140625, + "y": 1.11767578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1947, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1947, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1947, + "pitch": null, + "reason": null, + "target": { + "x": 0.7562255859375, + "y": 0.7763671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1949, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 1949, + "target": { + "x": 21.1719970703125, + "y": 15.607177734375, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1949, + "sequence": 118, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1950, + "pitch": null, + "reason": null, + "target": { + "x": 1.8831787109375, + "y": 1.9130859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1953, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1956, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 219 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1962, + "otherUnit": null, + "sequence": 111, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1964, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1967, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 58720257, + 59244545, + 61079553, + 62128129, + 62652417 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1968, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1973, + "pitch": null, + "reason": null, + "target": { + "x": 1.8895263671875, + "y": 1.8734130859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1975, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1978, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 62652417 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1979, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 69118, + "y": 115145, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1982, + "otherUnit": null, + "sequence": 114, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1983, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 9.75, + "y": 51.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 60030978, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1983, + "sequence": 119, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 1986, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 14.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1048577, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 1986, + "sequence": 115, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 176 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1987, + "otherUnit": null, + "sequence": 120, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1990, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1990, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 62914561 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1991, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1991, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 1994, + "otherUnit": null, + "sequence": 121, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 62914561 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1995, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257, + 61079553, + 62128129, + 62652417 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 1997, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1997, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 1998, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 1999, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 3.3416748046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2001, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2001, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 3.3416748046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2002, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2005, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 62914561 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2009, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2009, + "pitch": null, + "reason": null, + "target": { + "x": 1.365966796875, + "y": 1.0897216796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2013, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2014, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 61440, + "y": 436224, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2017, + "otherUnit": null, + "sequence": 122, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2019, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2020, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2020, + "sequence": 123, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2021, + "pitch": null, + "reason": null, + "target": { + "x": 1.2236328125, + "y": 1.100341796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545, + 61079553, + 62128129, + 62652417 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2024, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2025, + "pitch": null, + "reason": null, + "target": { + "x": 1.276123046875, + "y": 1.05615234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2025, + "pitch": null, + "reason": null, + "target": { + "x": 1.324951171875, + "y": 1.035888671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2025, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2027, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2027, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2028, + "pitch": null, + "reason": null, + "target": { + "x": 1.3848876953125, + "y": 1.0238037109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2028, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2029, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2029, + "pitch": null, + "reason": null, + "target": { + "x": 1.4449462890625, + "y": 0.9998779296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2029, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2031, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2032, + "pitch": null, + "reason": null, + "target": { + "x": 1.474853515625, + "y": 0.9893798828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2034, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2035, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2035, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 423936, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 0, + "targetUnitFlags": 175, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2036, + "otherUnit": null, + "sequence": 124, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2038, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2039, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2039, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2040, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2042, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2045, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2046, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 58720257, + 59244545, + 61079553, + 62128129, + 62652417 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2047, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2047, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2050, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2050, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2051, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2053, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2053, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 1.9088134765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2054, + "pitch": null, + "reason": null, + "target": { + "x": 1.895263671875, + "y": 1.952880859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2055, + "pitch": null, + "reason": null, + "target": { + "x": 1.8958740234375, + "y": 2.01708984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2055, + "pitch": null, + "reason": null, + "target": { + "x": 1.11572265625, + "y": 1.2503662109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 58720257, + 59244545, + 61079553, + 62128129, + 62652417 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2055, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2055, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 60030978 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2057, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2057, + "pitch": null, + "reason": null, + "target": { + "x": 1.8961181640625, + "y": 2.0777587890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2057, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2058, + "pitch": null, + "reason": null, + "target": { + "x": 1.8778076171875, + "y": 2.1971435546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2058, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2058, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2060, + "pitch": null, + "reason": null, + "target": { + "x": 1.8685302734375, + "y": 2.2457275390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2060, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2061, + "pitch": null, + "reason": null, + "target": { + "x": 1.8529052734375, + "y": 2.322509765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2061, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2061, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2062, + "pitch": null, + "reason": null, + "target": { + "x": 1.11572265625, + "y": 1.17138671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2062, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2064, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2064, + "pitch": null, + "reason": null, + "target": { + "x": 1.11572265625, + "y": 1.0228271484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2064, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2065, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2065, + "pitch": null, + "reason": null, + "target": { + "x": 1.11572265625, + "y": 0.9786376953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2066, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2066, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2068, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2069, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 3.3936767578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2071, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2072, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2075, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2075, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2076, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2076, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2077, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2077, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 13.75, + "z": 5.998046875 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 262145, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2077, + "sequence": 116, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2080, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2080, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2080, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 3.373291015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2083, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2083, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2084, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2084, + "pitch": null, + "reason": null, + "target": { + "x": 1.398681640625, + "y": 0.9766845703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2086, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2090, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2094, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 63176705 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2095, + "userid": { + "userId": 3 + } + }, + { + "distance": 9107, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2098, + "pitch": null, + "reason": null, + "target": { + "x": 1.793212890625, + "y": 2.271484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2098, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2099, + "pitch": null, + "reason": null, + "target": { + "x": 1.74853515625, + "y": 2.2403564453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 62914561 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2099, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2099, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": 8937, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2101, + "pitch": null, + "reason": null, + "target": { + "x": 1.7017822265625, + "y": 2.213623046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2102, + "pitch": null, + "reason": null, + "target": { + "x": 1.6431884765625, + "y": 2.1785888671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2102, + "pitch": null, + "reason": null, + "target": { + "x": 1.389892578125, + "y": 1.00634765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2103, + "target": { + "x": 25.37451171875, + "y": 16.401123046875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2103, + "sequence": 117, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2105, + "pitch": null, + "reason": null, + "target": { + "x": 1.600341796875, + "y": 2.154541015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2106, + "target": { + "x": 25.479248046875, + "y": 16.3336181640625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2106, + "sequence": 118, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2107, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.315185546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2109, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2109, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2110, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 0.9495849609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2112, + "target": { + "x": 27.815673828125, + "y": 14.9171142578125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2112, + "sequence": 119, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 63176705 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2113, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2114, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2116, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.04248046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2116, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2117, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.04248046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2118, + "target": { + "x": 25.36083984375, + "y": 16.0869140625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2118, + "sequence": 120, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2120, + "pitch": null, + "reason": null, + "target": { + "x": 1.161376953125, + "y": 1.19287109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2121, + "pitch": null, + "reason": null, + "target": { + "x": 1.161376953125, + "y": 1.1329345703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2121, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2123, + "pitch": null, + "reason": null, + "target": { + "x": 1.161376953125, + "y": 0.987548828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2123, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2123, + "target": { + "x": 25.4873046875, + "y": 15.997314453125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2123, + "sequence": 121, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2124, + "pitch": null, + "reason": null, + "target": { + "x": 1.161376953125, + "y": 0.914794921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2125, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3504638671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2125, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2125, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2127, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2129, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2129, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2129, + "pitch": null, + "reason": null, + "target": { + "x": 1.2435302734375, + "y": 0.80419921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2129, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2131, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2131, + "pitch": null, + "reason": null, + "target": { + "x": 1.373046875, + "y": 0.6746826171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2131, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2132, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.0888671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 0, + "unitLink": 168 + } + ], + "addUnitTags": [ + 5242881 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2132, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2133, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.12646484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2135, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.160888671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 201191, + "y": 81762, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2135, + "otherUnit": null, + "sequence": 125, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 59244545, + 61079553, + 62128129, + 62652417 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2135, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2136, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.2144775390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2136, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2138, + "target": { + "x": 24.1796875, + "y": 10.1395263671875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2138, + "sequence": 126, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2140, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2142, + "sequence": 127, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 58720257, + 59244545, + 61079553, + 62128129, + 62652417 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2142, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2143, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2143, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.1148681640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2144, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2146, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2146, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.1573486328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2147, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2149, + "pitch": null, + "reason": null, + "target": { + "x": 1.5902099609375, + "y": 2.2218017578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2149, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2150, + "pitch": null, + "reason": null, + "target": { + "x": 1.1259765625, + "y": 1.048828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2150, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2150, + "pitch": null, + "reason": null, + "target": { + "x": 1.55859375, + "y": 2.070068359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2150, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.2021484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2151, + "pitch": null, + "reason": null, + "target": { + "x": 1.4005126953125, + "y": 1.912109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2151, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2153, + "pitch": null, + "reason": null, + "target": { + "x": 1.2552490234375, + "y": 1.7667236328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2153, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2154, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3173828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2154, + "pitch": null, + "reason": null, + "target": { + "x": 1.17626953125, + "y": 1.4886474609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2154, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2155, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2155, + "pitch": null, + "reason": null, + "target": { + "x": 1.17626953125, + "y": 1.346435546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2157, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2484130859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2157, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2157, + "pitch": null, + "reason": null, + "target": { + "x": 1.17626953125, + "y": 1.2010498046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2158, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.203369140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2158, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2158, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2159, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.1651611328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2159, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2161, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2162, + "pitch": null, + "reason": null, + "target": { + "x": 1.1544189453125, + "y": 1.076171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2162, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2164, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2165, + "pitch": null, + "reason": null, + "target": { + "x": 1.187744140625, + "y": 1.1033935546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2165, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2166, + "pitch": null, + "reason": null, + "target": { + "x": 1.2183837890625, + "y": 1.1268310546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2168, + "pitch": null, + "reason": null, + "target": { + "x": 1.246826171875, + "y": 1.14599609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2168, + "target": { + "x": 15.8494873046875, + "y": 24.684326171875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2168, + "sequence": 128, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2170, + "target": { + "x": 16.399658203125, + "y": 23.873291015625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2170, + "sequence": 129, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2173, + "sequence": 130, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2177, + "pitch": null, + "reason": null, + "target": { + "x": 1.29052734375, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2177, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2179, + "pitch": null, + "reason": null, + "target": { + "x": 1.2513427734375, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2179, + "pitch": null, + "reason": null, + "target": { + "x": 1.29052734375, + "y": 0.9481201171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2180, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2181, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2181, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2183, + "pitch": null, + "reason": null, + "target": { + "x": 1.3310546875, + "y": 1.0968017578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2184, + "pitch": null, + "reason": null, + "target": { + "x": 1.3974609375, + "y": 0.9925537109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2184, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2185, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2190, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2288818359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2190, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2724609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2190, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2190, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2191, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2191, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2191, + "pitch": null, + "reason": null, + "target": { + "x": 1.2584228515625, + "y": 0.9481201171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2192, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3638916015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2194, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.4058837890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2194, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.449462890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2194, + "pitch": null, + "reason": null, + "target": { + "x": 1.5928955078125, + "y": 0.9454345703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2196, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2196, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.50048828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2196, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2198, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.544677734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2199, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2200, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2200, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2205, + "pitch": null, + "reason": null, + "target": { + "x": 1.5928955078125, + "y": 0.9454345703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2206, + "pitch": null, + "reason": null, + "target": { + "x": 1.29296875, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2206, + "pitch": null, + "reason": null, + "target": { + "x": 1.3314208984375, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2207, + "pitch": null, + "reason": null, + "target": { + "x": 1.3665771484375, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2209, + "pitch": null, + "reason": null, + "target": { + "x": 1.4041748046875, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2210, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 2.99658203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2211, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 2.8638916015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2211, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 0.9495849609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2213, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 2.7122802734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2214, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2214, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 2.45947265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2214, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2214, + "pitch": null, + "reason": null, + "target": { + "x": 1.2943115234375, + "y": 0.9481201171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2217, + "pitch": null, + "reason": null, + "target": { + "x": 1.3289794921875, + "y": 0.9481201171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2218, + "pitch": null, + "reason": null, + "target": { + "x": 1.3577880859375, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2218, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2220, + "pitch": null, + "reason": null, + "target": { + "x": 1.322509765625, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2220, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2221, + "pitch": null, + "reason": null, + "target": { + "x": 1.2529296875, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2221, + "pitch": null, + "reason": null, + "target": { + "x": 1.36669921875, + "y": 0.9481201171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2222, + "pitch": null, + "reason": null, + "target": { + "x": 1.220947265625, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 62390274 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2222, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2222, + "pitch": null, + "reason": null, + "target": { + "x": 1.5928955078125, + "y": 0.9454345703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2224, + "pitch": null, + "reason": null, + "target": { + "x": 1.183349609375, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2224, + "pitch": null, + "reason": null, + "target": { + "x": 1.6302490234375, + "y": 3.54345703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2225, + "pitch": null, + "reason": null, + "target": { + "x": 1.11376953125, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2226, + "pitch": null, + "reason": null, + "target": { + "x": 1.081787109375, + "y": 0.9481201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2226, + "pitch": null, + "reason": null, + "target": { + "x": 1.5447998046875, + "y": 0.9495849609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2228, + "pitch": null, + "reason": null, + "target": { + "x": 1.03857421875, + "y": 0.9049072265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2228, + "otherUnit": null, + "sequence": 131, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2229, + "pitch": null, + "reason": null, + "target": { + "x": 0.9697265625, + "y": 0.8360595703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 62390274 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2229, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2229, + "pitch": null, + "reason": null, + "target": { + "x": 1.3240966796875, + "y": 0.9481201171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2231, + "pitch": null, + "reason": null, + "target": { + "x": 0.93701171875, + "y": 0.80322265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 205232, + "y": 330332, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2231, + "otherUnit": null, + "sequence": 132, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2232, + "pitch": null, + "reason": null, + "target": { + "x": 0.8681640625, + "y": 0.7344970703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2232, + "pitch": null, + "reason": null, + "target": { + "x": 1.2840576171875, + "y": 0.9451904296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2233, + "pitch": null, + "reason": null, + "target": { + "x": 0.8314208984375, + "y": 0.71533203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2233, + "sequence": 133, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2233, + "pitch": null, + "reason": null, + "target": { + "x": 1.241455078125, + "y": 0.935546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2236, + "pitch": null, + "reason": null, + "target": { + "x": 1.6204833984375, + "y": 3.5029296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2236, + "pitch": null, + "reason": null, + "target": { + "x": 1.1923828125, + "y": 0.9176025390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2236, + "pitch": null, + "reason": null, + "target": { + "x": 1.1611328125, + "y": 0.9034423828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2237, + "pitch": null, + "reason": null, + "target": { + "x": 1.6099853515625, + "y": 3.471435546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2237, + "pitch": null, + "reason": null, + "target": { + "x": 1.593505859375, + "y": 3.4361572265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2237, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2239, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2239, + "pitch": null, + "reason": null, + "target": { + "x": 1.1060791015625, + "y": 0.8753662109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2240, + "pitch": null, + "reason": null, + "target": { + "x": 1.044921875, + "y": 0.8414306640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2242, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2242, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2242, + "pitch": null, + "reason": null, + "target": { + "x": 1.0157470703125, + "y": 0.82470703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2243, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2243, + "pitch": null, + "reason": null, + "target": { + "x": 0.950439453125, + "y": 0.786376953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2244, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2244, + "pitch": null, + "reason": null, + "target": { + "x": 0.9190673828125, + "y": 0.7677001953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2246, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2246, + "pitch": null, + "reason": null, + "target": { + "x": 0.8896484375, + "y": 0.7501220703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2247, + "pitch": null, + "reason": null, + "target": { + "x": 0.781005859375, + "y": 0.71533203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2247, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2247, + "pitch": null, + "reason": null, + "target": { + "x": 0.8424072265625, + "y": 0.721923828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2248, + "pitch": null, + "reason": null, + "target": { + "x": 0.744140625, + "y": 0.7216796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2250, + "pitch": null, + "reason": null, + "target": { + "x": 0.708984375, + "y": 0.7568359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2251, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8153076171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2251, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 247065, + "y": 409975, + "z": 38661 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2252, + "otherUnit": null, + "sequence": 134, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2254, + "pitch": null, + "reason": null, + "target": { + "x": 0.8070068359375, + "y": 0.7147216796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 210944, + "y": 133120, + "z": 40906 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2255, + "otherUnit": null, + "sequence": 128, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2257, + "target": { + "x": 29.7530517578125, + "y": 49.838623046875, + "z": 4.7691650390625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2257, + "sequence": 135, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2258, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7576904296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2258, + "pitch": null, + "reason": null, + "target": { + "x": 0.7713623046875, + "y": 0.7381591796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2261, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2261, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2261, + "pitch": null, + "reason": null, + "target": { + "x": 0.74072265625, + "y": 0.764404296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2263, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2265, + "pitch": null, + "reason": null, + "target": { + "x": 0.7099609375, + "y": 0.7750244140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52953089, + 53215233, + 53477377, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2268, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2268, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2269, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 57409537, + 58720257, + 61079553, + 62128129, + 62652417 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2270, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 18, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2273, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CameraSave", + "id": 14, + "loop": 2273, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "which": 1 + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2274, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2276, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2276, + "pitch": null, + "reason": null, + "target": { + "x": 1.2894287109375, + "y": 1.128662109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2276, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2276, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2277, + "pitch": null, + "reason": null, + "target": { + "x": 1.3367919921875, + "y": 1.0938720703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2278, + "pitch": null, + "reason": null, + "target": { + "x": 1.365966796875, + "y": 1.073486328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2278, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2280, + "pitch": null, + "reason": null, + "target": { + "x": 1.3941650390625, + "y": 1.055419921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2280, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2280, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2281, + "pitch": null, + "reason": null, + "target": { + "x": 1.4456787109375, + "y": 1.0233154296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2283, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2284, + "pitch": null, + "reason": null, + "target": { + "x": 1.4888916015625, + "y": 0.9967041015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2284, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2285, + "pitch": null, + "reason": null, + "target": { + "x": 1.5255126953125, + "y": 0.9813232421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2285, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2287, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2288, + "pitch": null, + "reason": null, + "target": { + "x": 1.5579833984375, + "y": 0.9708251953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2288, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2289, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2292, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2294, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 57344, + "y": 444416, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23330817, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2295, + "otherUnit": null, + "sequence": 136, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2295, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2298, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2299, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2300, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2300, + "sequence": 137, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2302, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2302, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2303, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2303, + "sequence": 138, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2303, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2304, + "pitch": null, + "reason": null, + "target": { + "x": 1.5838623046875, + "y": 0.88818359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 55312385 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2306, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2306, + "pitch": null, + "reason": null, + "target": { + "x": 1.5838623046875, + "y": 0.88818359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2309, + "pitch": null, + "reason": null, + "target": { + "x": 1.5830078125, + "y": 3.39794921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 99319, + "y": 90948, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2309, + "otherUnit": null, + "sequence": 129, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2311, + "pitch": null, + "reason": null, + "target": { + "x": 1.5867919921875, + "y": 3.345458984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2311, + "otherUnit": null, + "sequence": 130, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 52428801 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2313, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2317, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2317, + "sequence": 139, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2317, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2319, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2319, + "sequence": 140, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 116284, + "y": 86854, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2319, + "otherUnit": null, + "sequence": 131, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2321, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2322, + "target": { + "x": 14.9639892578125, + "y": 10.38818359375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2322, + "sequence": 132, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2324, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2324, + "sequence": 141, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2324, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2328, + "pitch": null, + "reason": null, + "target": { + "x": 1.6207275390625, + "y": 0.88818359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2328, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2328, + "sequence": 142, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2328, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2330, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2330, + "sequence": 143, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2333, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2335, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2335, + "sequence": 144, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2336, + "target": { + "x": 20.1396484375, + "y": 13.8939208984375, + "z": 5.9954833984375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2336, + "sequence": 133, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2337, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2337, + "pitch": null, + "reason": null, + "target": { + "x": 1.6466064453125, + "y": 2.63037109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2337, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 53.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 27262977, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2337, + "sequence": 145, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2339, + "target": { + "x": 19.9886474609375, + "y": 13.73876953125, + "z": 5.995361328125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2339, + "sequence": 134, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2340, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2341, + "pitch": null, + "reason": null, + "target": { + "x": 1.617431640625, + "y": 0.88818359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2343, + "pitch": null, + "reason": null, + "target": { + "x": 1.3018798828125, + "y": 0.978515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2343, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9539794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2344, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.90185546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2345, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2345, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.8485107421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2347, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.7939453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2348, + "pitch": null, + "reason": null, + "target": { + "x": 1.5828857421875, + "y": 1.0006103515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2348, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2348, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.7532958984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2350, + "pitch": null, + "reason": null, + "target": { + "x": 1.6900634765625, + "y": 2.621337890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2350, + "pitch": null, + "reason": null, + "target": { + "x": 1.7275390625, + "y": 2.6026611328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2350, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2351, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2351, + "target": { + "x": 20.4588623046875, + "y": 10.452392578125, + "z": 5.994873046875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2351, + "sequence": 135, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2352, + "pitch": null, + "reason": null, + "target": { + "x": 1.767333984375, + "y": 2.5576171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2352, + "pitch": null, + "reason": null, + "target": { + "x": 1.78076171875, + "y": 2.5201416015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2354, + "pitch": null, + "reason": null, + "target": { + "x": 1.7852783203125, + "y": 2.46533203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2354, + "target": { + "x": 20.283203125, + "y": 10.38427734375, + "z": 5.99609375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2354, + "sequence": 136, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2356, + "pitch": null, + "reason": null, + "target": { + "x": 1.7852783203125, + "y": 2.4158935546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2356, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2358, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.32177734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2358, + "pitch": null, + "reason": null, + "target": { + "x": 1.78076171875, + "y": 2.383544921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2359, + "pitch": null, + "reason": null, + "target": { + "x": 0.7818603515625, + "y": 3.3017578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2359, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2359, + "pitch": null, + "reason": null, + "target": { + "x": 1.4534912109375, + "y": 0.9248046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2359, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.6883544921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2359, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.32177734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2361, + "pitch": null, + "reason": null, + "target": { + "x": 1.5546875, + "y": 0.7857666015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2361, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2361, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.635009765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2362, + "pitch": null, + "reason": null, + "target": { + "x": 1.5546875, + "y": 0.66259765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2362, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2363, + "pitch": null, + "reason": null, + "target": { + "x": 1.7852783203125, + "y": 2.4188232421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2365, + "pitch": null, + "reason": null, + "target": { + "x": 1.801025390625, + "y": 2.4676513671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2365, + "pitch": null, + "reason": null, + "target": { + "x": 1.8115234375, + "y": 2.529052734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2365, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2365, + "target": { + "x": 20.0499267578125, + "y": 8.537841796875, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2365, + "sequence": 137, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2366, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2367, + "pitch": null, + "reason": null, + "target": { + "x": 1.8138427734375, + "y": 2.5748291015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2367, + "target": { + "x": 20.0770263671875, + "y": 8.5980224609375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2367, + "sequence": 138, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2369, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2369, + "pitch": null, + "reason": null, + "target": { + "x": 1.8250732421875, + "y": 2.64453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2369, + "target": { + "x": 22.466064453125, + "y": 10.0872802734375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2369, + "sequence": 146, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2370, + "pitch": null, + "reason": null, + "target": { + "x": 1.8250732421875, + "y": 2.694091796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2370, + "target": { + "x": 20.173828125, + "y": 8.50341796875, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2370, + "sequence": 139, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2370, + "pitch": null, + "reason": null, + "target": { + "x": 0.7706298828125, + "y": 3.3074951171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2371, + "pitch": null, + "reason": null, + "target": { + "x": 1.8236083984375, + "y": 2.7510986328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2371, + "target": { + "x": 22.8074951171875, + "y": 9.6552734375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2371, + "sequence": 147, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2374, + "pitch": null, + "reason": null, + "target": { + "x": 1.8153076171875, + "y": 2.8057861328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2374, + "target": { + "x": 22.95556640625, + "y": 9.555908203125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2374, + "sequence": 148, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2376, + "pitch": null, + "reason": null, + "target": { + "x": 1.809326171875, + "y": 2.8388671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2377, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2378, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2382, + "pitch": null, + "reason": null, + "target": { + "x": 1.8116455078125, + "y": 2.8028564453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2384, + "pitch": null, + "reason": null, + "target": { + "x": 1.817626953125, + "y": 2.7601318359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 57671682, + 58982401, + 60293121, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2384, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2384, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2385, + "pitch": null, + "reason": null, + "target": { + "x": 1.8236083984375, + "y": 2.712890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2387, + "pitch": null, + "reason": null, + "target": { + "x": 1.8258056640625, + "y": 2.663330078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 57671682, + 58195969, + 58982401, + 60293121, + 63176705, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2388, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2388, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2391, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2395, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2396, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2399, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2400, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2402, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 163840, + "y": 69632, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2402, + "otherUnit": null, + "sequence": 146, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2404, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2406, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 239365, + "y": 406654, + "z": 39756 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2408, + "otherUnit": null, + "sequence": 149, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2413, + "target": { + "x": 29.2205810546875, + "y": 49.6553955078125, + "z": 4.8564453125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2413, + "sequence": 150, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2417, + "pitch": null, + "reason": null, + "target": { + "x": 1.6466064453125, + "y": 3.2010498046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2417, + "target": { + "x": 29.22119140625, + "y": 49.6627197265625, + "z": 4.858154296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2417, + "sequence": 151, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 266, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 61440, + "y": 88064, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1835009, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2417, + "otherUnit": null, + "sequence": 147, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2419, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2421, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2423, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52953089, + 53215233, + 57671682, + 58195969, + 58982401, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2425, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2426, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 57671682, + 58195969, + 58982401, + 60293121, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2429, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2430, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2432, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2434, + "pitch": null, + "reason": null, + "target": { + "x": 1.8370361328125, + "y": 2.5831298828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51904513 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2434, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2436, + "pitch": null, + "reason": null, + "target": { + "x": 1.843017578125, + "y": 2.5418701171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2436, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2436, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2439, + "pitch": null, + "reason": null, + "target": { + "x": 1.8408203125, + "y": 2.45556640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2439, + "pitch": null, + "reason": null, + "target": { + "x": 1.8385009765625, + "y": 2.412109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2440, + "pitch": null, + "reason": null, + "target": { + "x": 1.6339111328125, + "y": 3.2298583984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2440, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2440, + "pitch": null, + "reason": null, + "target": { + "x": 1.7403564453125, + "y": 3.1717529296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2441, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2445, + "pitch": null, + "reason": null, + "target": { + "x": 1.861083984375, + "y": 2.49755859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2445, + "pitch": null, + "reason": null, + "target": { + "x": 1.9097900390625, + "y": 2.5748291015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2445, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2447, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 220050, + "y": 396986, + "z": 40933 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2447, + "otherUnit": null, + "sequence": 148, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2448, + "pitch": null, + "reason": null, + "target": { + "x": 1.9713134765625, + "y": 2.6678466796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2449, + "pitch": null, + "reason": null, + "target": { + "x": 1.9818115234375, + "y": 2.6986083984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2449, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2449, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2451, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2452, + "pitch": null, + "reason": null, + "target": { + "x": 1.9803466796875, + "y": 2.7353515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2452, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2452, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2454, + "pitch": null, + "reason": null, + "target": { + "x": 1.954833984375, + "y": 2.7742919921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2454, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2454, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2456, + "pitch": null, + "reason": null, + "target": { + "x": 1.8948974609375, + "y": 2.8643798828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2458, + "pitch": null, + "reason": null, + "target": { + "x": 1.8670654296875, + "y": 2.9078369140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2458, + "pitch": null, + "reason": null, + "target": { + "x": 1.81689453125, + "y": 2.9827880859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2458, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2458, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2458, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2460, + "pitch": null, + "reason": null, + "target": { + "x": 1.786865234375, + "y": 3.0345458984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2462, + "pitch": null, + "reason": null, + "target": { + "x": 1.7725830078125, + "y": 3.0631103515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2462, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52953089, + 53215233, + 57671682, + 58195969, + 58982401, + 60293121, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2463, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2464, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52428801, + 52690945, + 52953089, + 53215233, + 57671682, + 58195969, + 58982401, + 60293121, + 63176705, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2467, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2467, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2469, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2470, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2473, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 18, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2474, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2474, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2480, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2480, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2481, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2482, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2484, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2485, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2485, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2488, + "pitch": null, + "reason": null, + "target": { + "x": 1.7767333984375, + "y": 1.114013671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2488, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2490, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2490, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2492, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2495, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2495, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2495, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2495, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2497, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2497, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2499, + "pitch": null, + "reason": null, + "target": { + "x": 1.709228515625, + "y": 1.0772705078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2503, + "pitch": null, + "reason": null, + "target": { + "x": 0.71923828125, + "y": 3.364013671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2503, + "target": { + "x": 28.9951171875, + "y": 49.4609375, + "z": 4.8642578125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2503, + "sequence": 152, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 57409537, + 58720257, + 59244545, + 61079553, + 62128129, + 62652417 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2503, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2503, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2507, + "target": { + "x": 29.0294189453125, + "y": 49.502685546875, + "z": 4.8660888671875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2507, + "sequence": 153, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2507, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2507, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2508, + "userid": { + "userId": 1 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2511, + "target": { + "x": 29.0372314453125, + "y": 49.51171875, + "z": 4.8663330078125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2511, + "sequence": 154, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2511, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2514, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2516, + "pitch": null, + "reason": null, + "target": { + "x": 1.3717041015625, + "y": 0.7945556640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2518, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 60030978 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2519, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2519, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2521, + "pitch": null, + "reason": null, + "target": { + "x": 1.67919921875, + "y": 1.067626953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2522, + "pitch": null, + "reason": null, + "target": { + "x": 1.6162109375, + "y": 1.0533447265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2522, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2522, + "pitch": null, + "reason": null, + "target": { + "x": 1.3717041015625, + "y": 0.6334228515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2522, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2522, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2523, + "pitch": null, + "reason": null, + "target": { + "x": 1.5794677734375, + "y": 1.039794921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2523, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2526, + "pitch": null, + "reason": null, + "target": { + "x": 1.5067138671875, + "y": 1.013671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2526, + "otherUnit": null, + "sequence": 150, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2527, + "pitch": null, + "reason": null, + "target": { + "x": 1.4444580078125, + "y": 1.0015869140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2529, + "pitch": null, + "reason": null, + "target": { + "x": 1.4046630859375, + "y": 0.994140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2529, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 82 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 61440, + "y": 108544, + "z": 49104 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 1310721, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2529, + "otherUnit": null, + "sequence": 151, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2530, + "pitch": null, + "reason": null, + "target": { + "x": 1.358154296875, + "y": 0.984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2532, + "pitch": null, + "reason": null, + "target": { + "x": 1.3125, + "y": 0.98291015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2534, + "pitch": null, + "reason": null, + "target": { + "x": 1.27490234375, + "y": 0.9912109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2534, + "pitch": null, + "reason": null, + "target": { + "x": 1.3717041015625, + "y": 0.7535400390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2536, + "pitch": null, + "reason": null, + "target": { + "x": 1.3717041015625, + "y": 0.816650390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2538, + "pitch": null, + "reason": null, + "target": { + "x": 1.2449951171875, + "y": 1.0166015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 56885249, + 57147393, + 58720257, + 59244545, + 61079553, + 62128129, + 62652417 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2538, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2538, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2540, + "pitch": null, + "reason": null, + "target": { + "x": 1.2059326171875, + "y": 1.0272216796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2541, + "pitch": null, + "reason": null, + "target": { + "x": 1.169189453125, + "y": 1.011474609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2541, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2542, + "pitch": null, + "reason": null, + "target": { + "x": 1.1129150390625, + "y": 0.9769287109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2542, + "pitch": null, + "reason": null, + "target": { + "x": 1.044677734375, + "y": 0.9244384765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2542, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.369140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2542, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2544, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2545, + "pitch": null, + "reason": null, + "target": { + "x": 0.950927734375, + "y": 0.8209228515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2545, + "pitch": null, + "reason": null, + "target": { + "x": 0.907470703125, + "y": 0.7991943359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2547, + "otherUnit": null, + "sequence": 155, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2547, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2548, + "pitch": null, + "reason": null, + "target": { + "x": 0.8541259765625, + "y": 0.783447265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2549, + "pitch": null, + "reason": null, + "target": { + "x": 0.7806396484375, + "y": 0.7857666015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2551, + "pitch": null, + "reason": null, + "target": { + "x": 0.7086181640625, + "y": 0.802978515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2552, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 57344, + "y": 96256, + "z": 49104 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 524289, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2552, + "otherUnit": null, + "sequence": 152, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2553, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2556, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2558, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2558, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2560, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2560, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 60030978 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2562, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2562, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2563, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2563, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2564, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2567, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2568, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2570, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 10.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1835009, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2570, + "sequence": 153, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 57671682, + 58195969, + 58982401, + 60293121, + 63176705, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2571, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2571, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 57671682, + 58195969, + 58982401, + 60293121, + 63176705, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2575, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2575, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 60030978 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2577, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2578, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2579, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3477783203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2579, + "otherUnit": null, + "sequence": 154, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2581, + "pitch": null, + "reason": null, + "target": { + "x": 1.5838623046875, + "y": 3.1422119140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2582, + "pitch": null, + "reason": null, + "target": { + "x": 1.623046875, + "y": 3.1422119140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2582, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2582, + "pitch": null, + "reason": null, + "target": { + "x": 1.5838623046875, + "y": 3.1422119140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2585, + "pitch": null, + "reason": null, + "target": { + "x": 1.275146484375, + "y": 1.8304443359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2588, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2589, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2590, + "pitch": null, + "reason": null, + "target": { + "x": 1.275146484375, + "y": 1.732421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2592, + "pitch": null, + "reason": null, + "target": { + "x": 1.275146484375, + "y": 1.5870361328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2592, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2593, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2593, + "pitch": null, + "reason": null, + "target": { + "x": 1.275146484375, + "y": 1.334228515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2594, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2594, + "pitch": null, + "reason": null, + "target": { + "x": 1.275146484375, + "y": 1.185791015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2594, + "pitch": null, + "reason": null, + "target": { + "x": 1.6156005859375, + "y": 3.1422119140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2596, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2596, + "pitch": null, + "reason": null, + "target": { + "x": 1.275146484375, + "y": 1.0941162109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2596, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2597, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2599, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2600, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2600, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2601, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2603, + "userid": { + "userId": 1 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 145914, + "y": 165119, + "z": 40940 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2603, + "otherUnit": null, + "sequence": 156, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2604, + "pitch": null, + "reason": null, + "target": { + "x": 1.623046875, + "y": 3.186279296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2604, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2605, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2607, + "target": { + "x": 17.3809814453125, + "y": 21.2880859375, + "z": 4.9959716796875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2607, + "sequence": 157, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 60030978 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2608, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2608, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2609, + "target": { + "x": 16.732421875, + "y": 22.907958984375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2609, + "sequence": 158, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2609, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2611, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2612, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2614, + "target": { + "x": 16.1142578125, + "y": 23.13623046875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2614, + "sequence": 159, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2615, + "pitch": null, + "reason": null, + "target": { + "x": 1.4512939453125, + "y": 0.7064208984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2615, + "pitch": null, + "reason": null, + "target": { + "x": 1.6229248046875, + "y": 3.173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2616, + "userid": { + "userId": 1 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2616, + "target": { + "x": 15.4183349609375, + "y": 23.29931640625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2616, + "sequence": 160, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 56, + "unitLink": 252 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55574529, + 55836673, + 56098817, + 56360961, + 56623105, + 57147393, + 58720257, + 59244545, + 61079553, + 62128129, + 62652417, + 63963137 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2618, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2618, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2619, + "target": { + "x": 14.9464111328125, + "y": 23.3267822265625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2619, + "sequence": 161, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2620, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2622, + "sequence": 162, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2622, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2625, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2630, + "pitch": null, + "reason": null, + "target": { + "x": 1.1297607421875, + "y": 1.0941162109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2630, + "pitch": null, + "reason": null, + "target": { + "x": 1.0191650390625, + "y": 1.0941162109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2631, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2634, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2635, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2635, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2637, + "pitch": null, + "reason": null, + "target": { + "x": 1.4405517578125, + "y": 0.7451171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2638, + "pitch": null, + "reason": null, + "target": { + "x": 1.4290771484375, + "y": 0.77490234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2638, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2640, + "pitch": null, + "reason": null, + "target": { + "x": 1.385009765625, + "y": 0.755126953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2641, + "pitch": null, + "reason": null, + "target": { + "x": 1.4150390625, + "y": 0.8060302734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2641, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2642, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2645, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2645, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2645, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2648, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2649, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2651, + "pitch": null, + "reason": null, + "target": { + "x": 1.385009765625, + "y": 0.635009765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2652, + "pitch": null, + "reason": null, + "target": { + "x": 1.385009765625, + "y": 0.527587890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2652, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2653, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2655, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2655, + "target": { + "x": 24.2305908203125, + "y": 7.4674072265625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2655, + "sequence": 163, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2656, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2657, + "target": { + "x": 23.7945556640625, + "y": 9.347412109375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2657, + "sequence": 164, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2657, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2661, + "target": { + "x": 23.5958251953125, + "y": 9.9144287109375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2661, + "sequence": 165, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2661, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2663, + "pitch": null, + "reason": null, + "target": { + "x": 1.3997802734375, + "y": 0.837890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2664, + "pitch": null, + "reason": null, + "target": { + "x": 1.3817138671875, + "y": 0.865478515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2666, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2667, + "pitch": null, + "reason": null, + "target": { + "x": 1.367919921875, + "y": 0.8936767578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2667, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2668, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2670, + "pitch": null, + "reason": null, + "target": { + "x": 1.35595703125, + "y": 0.9266357421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 56623105 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2670, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2671, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2672, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 118925, + "y": 112778, + "z": 49102 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2674, + "otherUnit": null, + "sequence": 155, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2674, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2675, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2678, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2678, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2681, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2685, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2685, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 60030978 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2690, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2692, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2693, + "userid": { + "userId": 1 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2693, + "target": { + "x": 23.0137939453125, + "y": 18.224609375, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2693, + "sequence": 156, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2698, + "userid": { + "userId": 1 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 235 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2700, + "otherUnit": null, + "sequence": 166, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 70, + "unitLink": 71 + } + ], + "addUnitTags": [ + 62390275 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2700, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2701, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2704, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 1.0478515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2705, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 1.0478515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 62914562, + 64487425 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2708, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2709, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2709, + "pitch": null, + "reason": null, + "target": { + "x": 1.5201416015625, + "y": 1.268798828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2712, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2713, + "otherUnit": null, + "sequence": 167, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 62914562 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2715, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2715, + "pitch": null, + "reason": null, + "target": { + "x": 1.31005859375, + "y": 0.7313232421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2718, + "sequence": 168, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 64487425 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2719, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 60030978 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2720, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2723, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 1.0118408203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2723, + "target": { + "x": 18.9527587890625, + "y": 13.6812744140625, + "z": 5.9949951171875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2723, + "sequence": 157, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2726, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2727, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2727, + "pitch": null, + "reason": null, + "target": { + "x": 1.5977783203125, + "y": 1.489013671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2727, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2730, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2730, + "pitch": null, + "reason": null, + "target": { + "x": 0.8055419921875, + "y": 0.7281494140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2731, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2733, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2735, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 0.9798583984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2735, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2735, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2735, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2737, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 0.9422607421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2737, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2737, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 1.0147705078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 107150, + "y": 434734, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2739, + "otherUnit": null, + "sequence": 169, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2742, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2742, + "pitch": null, + "reason": null, + "target": { + "x": 0.8055419921875, + "y": 0.7618408203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2744, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2744, + "pitch": null, + "reason": null, + "target": { + "x": 0.8055419921875, + "y": 0.8128662109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2745, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2745, + "pitch": null, + "reason": null, + "target": { + "x": 0.8055419921875, + "y": 0.91259765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2745, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 0.98291015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2746, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2746, + "pitch": null, + "reason": null, + "target": { + "x": 0.8055419921875, + "y": 0.970703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2748, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2748, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2749, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2749, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2750, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2750, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 0.9476318359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2752, + "pitch": null, + "reason": null, + "target": { + "x": 1.449462890625, + "y": 0.72802734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2752, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2753, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2753, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2753, + "target": { + "x": 15.5301513671875, + "y": 19.8985595703125, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2753, + "sequence": 158, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2756, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2756, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2756, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2759, + "target": { + "x": 16.6722412109375, + "y": 14.6754150390625, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2759, + "sequence": 159, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52953089, + 53215233, + 53477377, + 57671682, + 58982401, + 60293121, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2760, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2760, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2763, + "userid": { + "userId": 1 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2763, + "target": { + "x": 16.7265625, + "y": 14.7462158203125, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2763, + "sequence": 160, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52953089, + 53215233, + 53477377, + 57671682, + 58195969, + 58982401, + 60293121, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2765, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2765, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2765, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52953089, + 53215233, + 53477377, + 57671682, + 58195969, + 58982401, + 60293121, + 63176705, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2771, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2771, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2771, + "pitch": null, + "reason": null, + "target": { + "x": 1.8184814453125, + "y": 1.5264892578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2774, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2776, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2778, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2779, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 65792, + "data": { + "TargetPoint": { + "x": 225561, + "y": 402058, + "z": 40939 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2779, + "otherUnit": null, + "sequence": 161, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2780, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2782, + "pitch": null, + "reason": null, + "target": { + "x": 1.923095703125, + "y": 1.8314208984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2782, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2783, + "pitch": null, + "reason": null, + "target": { + "x": 1.626953125, + "y": 0.935791015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2785, + "pitch": null, + "reason": null, + "target": { + "x": 1.109375, + "y": 0.9923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2786, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2787, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 235 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2787, + "otherUnit": null, + "sequence": 170, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2789, + "pitch": null, + "reason": null, + "target": { + "x": 1.0087890625, + "y": 0.85107421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2791, + "pitch": null, + "reason": null, + "target": { + "x": 0.70361328125, + "y": 3.1422119140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 61865987 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2793, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2793, + "pitch": null, + "reason": null, + "target": { + "x": 0.70361328125, + "y": 3.1422119140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2796, + "otherUnit": null, + "sequence": 171, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 70, + "unitLink": 71 + } + ], + "addUnitTags": [ + 62390275 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2797, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 61865987 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2797, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2800, + "pitch": null, + "reason": null, + "target": { + "x": 0.70361328125, + "y": 3.1798095703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2801, + "pitch": null, + "reason": null, + "target": { + "x": 0.70361328125, + "y": 3.247802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2801, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2802, + "pitch": null, + "reason": null, + "target": { + "x": 0.70361328125, + "y": 3.285400390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2806, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2808, + "pitch": null, + "reason": null, + "target": { + "x": 0.70361328125, + "y": 3.1829833984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 10, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 141312, + "y": 124928, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2809, + "otherUnit": null, + "sequence": 165, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2811, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 53739521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2811, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2812, + "pitch": null, + "reason": null, + "target": { + "x": 0.70361328125, + "y": 3.2213134765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2813, + "pitch": null, + "reason": null, + "target": { + "x": 1.890869140625, + "y": 1.843994140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 66567, + "y": 439381, + "z": 49104 + }, + "snapshotUnitLink": 126, + "snapshotUpkeepPlayerId": 1, + "tag": 63438849, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2815, + "otherUnit": null, + "sequence": 172, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2815, + "pitch": null, + "reason": null, + "target": { + "x": 0.70361328125, + "y": 3.2613525390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2816, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2819, + "pitch": null, + "reason": null, + "target": { + "x": 1.8697509765625, + "y": 1.8729248046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2819, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 18, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2820, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2820, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 54.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23330817, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2820, + "sequence": 173, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 344 + } + ], + "addUnitTags": [ + 31719425 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2822, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2822, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2823, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2824, + "pitch": null, + "reason": null, + "target": { + "x": 1.861328125, + "y": 1.9061279296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2826, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2827, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 1.923095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2828, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2830, + "pitch": null, + "reason": null, + "target": { + "x": 1.85791015625, + "y": 1.9404296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 61603842 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2831, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2834, + "pitch": null, + "reason": null, + "target": { + "x": 1.8564453125, + "y": 1.974853515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2834, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 1.9810791015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2835, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.077392578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2837, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.12841796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2838, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.2281494140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2839, + "pitch": null, + "reason": null, + "target": { + "x": 1.85595703125, + "y": 2.0125732421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2839, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.2791748046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2839, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2842, + "pitch": null, + "reason": null, + "target": { + "x": 0.70361328125, + "y": 3.336669921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2843, + "pitch": null, + "reason": null, + "target": { + "x": 0.70361328125, + "y": 3.37255859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 239288, + "y": 339438, + "z": 33159 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2843, + "otherUnit": null, + "sequence": 169, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2845, + "pitch": null, + "reason": null, + "target": { + "x": 1.855712890625, + "y": 2.049560546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2846, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2848, + "pitch": null, + "reason": null, + "target": { + "x": 0.70361328125, + "y": 3.2960205078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2849, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.0859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2853, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7, + "y": 56.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 23592961, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2853, + "sequence": 174, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2853, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.327880859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2853, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.384765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2853, + "pitch": null, + "reason": null, + "target": { + "x": 0.70361328125, + "y": 3.331298828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2854, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.1229248046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2854, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.435791015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2856, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.4891357421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2857, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.58544921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2857, + "pitch": null, + "reason": null, + "target": { + "x": 0.70361328125, + "y": 3.3648681640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2858, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.6353759765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2860, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.160400390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2860, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.6910400390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2860, + "otherUnit": null, + "sequence": 172, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2861, + "sequence": 173, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2861, + "sequence": 174, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2864, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.196533203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2864, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2867, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 203755, + "y": 382334, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2868, + "otherUnit": null, + "sequence": 181, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2869, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.232177734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2872, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2875, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.2698974609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2875, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2879, + "pitch": null, + "reason": null, + "target": { + "x": 1.2122802734375, + "y": 0.88818359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2879, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.3057861328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2880, + "pitch": null, + "reason": null, + "target": { + "x": 1.2122802734375, + "y": 0.88818359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 182 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2883, + "otherUnit": null, + "sequence": 176, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2884, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.34130859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 52953089 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2886, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2887, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2890, + "pitch": null, + "reason": null, + "target": { + "x": 1.2122802734375, + "y": 0.9385986328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2890, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.3770751953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2890, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2890, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2894, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.4146728515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2894, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2894, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2898, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2899, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.45166015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2901, + "pitch": null, + "reason": null, + "target": { + "x": 1.2122802734375, + "y": 0.9241943359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2904, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2904, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.48583984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2904, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2908, + "pitch": null, + "reason": null, + "target": { + "x": 1.2562255859375, + "y": 0.965087890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2908, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2909, + "pitch": null, + "reason": null, + "target": { + "x": 1.3194580078125, + "y": 0.965087890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 2909, + "pitch": null, + "reason": null, + "target": { + "x": 1.8555908203125, + "y": 2.5174560546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2910, + "pitch": null, + "reason": null, + "target": { + "x": 1.3514404296875, + "y": 0.965087890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2910, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2912, + "pitch": null, + "reason": null, + "target": { + "x": 1.389892578125, + "y": 0.965087890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 61603842 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2912, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2912, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2913, + "pitch": null, + "reason": null, + "target": { + "x": 1.453857421875, + "y": 0.965087890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2913, + "pitch": null, + "reason": null, + "target": { + "x": 1.614013671875, + "y": 3.0869140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2915, + "pitch": null, + "reason": null, + "target": { + "x": 1.4930419921875, + "y": 0.965087890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2915, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2916, + "pitch": null, + "reason": null, + "target": { + "x": 1.5601806640625, + "y": 0.925048828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2916, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2916, + "pitch": null, + "reason": null, + "target": { + "x": 1.2440185546875, + "y": 0.945556640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2917, + "pitch": null, + "reason": null, + "target": { + "x": 1.6002197265625, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2917, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2919, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2919, + "pitch": null, + "reason": null, + "target": { + "x": 1.2869873046875, + "y": 0.94970703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2920, + "pitch": null, + "reason": null, + "target": { + "x": 1.3238525390625, + "y": 0.94775390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2923, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 59768834 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2923, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2923, + "pitch": null, + "reason": null, + "target": { + "x": 1.3712158203125, + "y": 0.9403076171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 63438849 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2924, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2924, + "pitch": null, + "reason": null, + "target": { + "x": 1.4188232421875, + "y": 0.9302978515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2925, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 89210, + "y": 84405, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2925, + "otherUnit": null, + "sequence": 182, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2927, + "pitch": null, + "reason": null, + "target": { + "x": 1.43505859375, + "y": 0.673828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2927, + "pitch": null, + "reason": null, + "target": { + "x": 1.4730224609375, + "y": 0.9173583984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2928, + "pitch": null, + "reason": null, + "target": { + "x": 1.640380859375, + "y": 3.1285400390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2928, + "pitch": null, + "reason": null, + "target": { + "x": 1.52685546875, + "y": 0.90380859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58982401, + 60293121, + 61603842, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2930, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2930, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2931, + "pitch": null, + "reason": null, + "target": { + "x": 1.674072265625, + "y": 3.17333984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2931, + "pitch": null, + "reason": null, + "target": { + "x": 1.5758056640625, + "y": 0.8912353515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2935, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2935, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 2935, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 9.75, + "y": 9.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 2359297, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2935, + "sequence": 183, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2938, + "pitch": null, + "reason": null, + "target": { + "x": 1.70458984375, + "y": 3.1468505859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2938, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2939, + "pitch": null, + "reason": null, + "target": { + "x": 1.7286376953125, + "y": 3.1103515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2939, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2941, + "pitch": null, + "reason": null, + "target": { + "x": 1.7510986328125, + "y": 3.0770263671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2942, + "pitch": null, + "reason": null, + "target": { + "x": 1.8006591796875, + "y": 3.000244140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2942, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2943, + "pitch": null, + "reason": null, + "target": { + "x": 1.8216552734375, + "y": 2.9656982421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2943, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 116422, + "y": 437446, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2945, + "otherUnit": null, + "sequence": 177, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2946, + "pitch": null, + "reason": null, + "target": { + "x": 1.8377685546875, + "y": 2.938720703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2949, + "target": { + "x": 14.1343994140625, + "y": 53.172119140625, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2949, + "sequence": 178, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2950, + "pitch": null, + "reason": null, + "target": { + "x": 1.546630859375, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2950, + "pitch": null, + "reason": null, + "target": { + "x": 1.511474609375, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 63700993 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2950, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2951, + "pitch": null, + "reason": null, + "target": { + "x": 1.47705078125, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2951, + "target": { + "x": 14.071044921875, + "y": 53.068115234375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2951, + "sequence": 179, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2953, + "pitch": null, + "reason": null, + "target": { + "x": 1.4346923828125, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2954, + "pitch": null, + "reason": null, + "target": { + "x": 1.367431640625, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2956, + "pitch": null, + "reason": null, + "target": { + "x": 1.3338623046875, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2957, + "pitch": null, + "reason": null, + "target": { + "x": 1.26025390625, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2957, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2960, + "pitch": null, + "reason": null, + "target": { + "x": 1.188232421875, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2960, + "pitch": null, + "reason": null, + "target": { + "x": 1.80029296875, + "y": 2.9515380859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2960, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2960, + "pitch": null, + "reason": null, + "target": { + "x": 1.5323486328125, + "y": 0.885009765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2961, + "pitch": null, + "reason": null, + "target": { + "x": 1.1258544921875, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2961, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2961, + "pitch": null, + "reason": null, + "target": { + "x": 1.4981689453125, + "y": 0.885009765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2962, + "pitch": null, + "reason": null, + "target": { + "x": 1.0858154296875, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2962, + "pitch": null, + "reason": null, + "target": { + "x": 1.7615966796875, + "y": 2.96240234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2964, + "pitch": null, + "reason": null, + "target": { + "x": 1.0531005859375, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2964, + "pitch": null, + "reason": null, + "target": { + "x": 1.7076416015625, + "y": 2.9677734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2964, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2964, + "pitch": null, + "reason": null, + "target": { + "x": 1.4542236328125, + "y": 0.885009765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2965, + "pitch": null, + "reason": null, + "target": { + "x": 0.9842529296875, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2965, + "pitch": null, + "reason": null, + "target": { + "x": 1.6514892578125, + "y": 2.9708251953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2965, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 79872, + "y": 75776, + "z": 49104 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 2359297, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2965, + "otherUnit": null, + "sequence": 190, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2965, + "pitch": null, + "reason": null, + "target": { + "x": 1.402587890625, + "y": 0.885009765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2967, + "pitch": null, + "reason": null, + "target": { + "x": 0.9498291015625, + "y": 0.885009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2967, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2967, + "pitch": null, + "reason": null, + "target": { + "x": 1.5870361328125, + "y": 2.9764404296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2968, + "pitch": null, + "reason": null, + "target": { + "x": 0.8802490234375, + "y": 0.8658447265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2968, + "pitch": null, + "reason": null, + "target": { + "x": 1.51416015625, + "y": 2.99267578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2968, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2968, + "pitch": null, + "reason": null, + "target": { + "x": 1.3487548828125, + "y": 0.885009765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2969, + "pitch": null, + "reason": null, + "target": { + "x": 0.841064453125, + "y": 0.82666015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2969, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2969, + "pitch": null, + "reason": null, + "target": { + "x": 1.2904052734375, + "y": 0.885009765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2971, + "pitch": null, + "reason": null, + "target": { + "x": 0.8074951171875, + "y": 0.79296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2971, + "pitch": null, + "reason": null, + "target": { + "x": 1.4691162109375, + "y": 3.004150390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2972, + "pitch": null, + "reason": null, + "target": { + "x": 0.74267578125, + "y": 0.7666015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2972, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2972, + "pitch": null, + "reason": null, + "target": { + "x": 1.601806640625, + "y": 2.8492431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2972, + "pitch": null, + "reason": null, + "target": { + "x": 1.232177734375, + "y": 0.8837890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2973, + "pitch": null, + "reason": null, + "target": { + "x": 1.42138671875, + "y": 3.013671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2973, + "pitch": null, + "reason": null, + "target": { + "x": 1.19970703125, + "y": 0.881591796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2975, + "pitch": null, + "reason": null, + "target": { + "x": 1.137451171875, + "y": 0.873779296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2976, + "pitch": null, + "reason": null, + "target": { + "x": 1.36767578125, + "y": 3.022705078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2976, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 176128, + "y": 397312, + "z": 40928 + }, + "snapshotUnitLink": 475, + "snapshotUpkeepPlayerId": 0, + "tag": 41418753, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 2976, + "otherUnit": null, + "sequence": 191, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2976, + "pitch": null, + "reason": null, + "target": { + "x": 1.0721435546875, + "y": 0.8607177734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2977, + "pitch": null, + "reason": null, + "target": { + "x": 1.316162109375, + "y": 3.0389404296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2977, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2977, + "pitch": null, + "reason": null, + "target": { + "x": 1.038330078125, + "y": 0.8526611328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2979, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2979, + "pitch": null, + "reason": null, + "target": { + "x": 1.2813720703125, + "y": 3.050048828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2979, + "target": { + "x": 21.1820068359375, + "y": 50.559814453125, + "z": 4.9974365234375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2979, + "sequence": 192, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2979, + "pitch": null, + "reason": null, + "target": { + "x": 1.005126953125, + "y": 0.8441162109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2980, + "pitch": null, + "reason": null, + "target": { + "x": 1.2305908203125, + "y": 3.0673828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2980, + "pitch": null, + "reason": null, + "target": { + "x": 1.601806640625, + "y": 2.884033203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2980, + "pitch": null, + "reason": null, + "target": { + "x": 0.9384765625, + "y": 0.825439453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2982, + "pitch": null, + "reason": null, + "target": { + "x": 1.601806640625, + "y": 2.9327392578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2982, + "pitch": null, + "reason": null, + "target": { + "x": 0.9033203125, + "y": 0.815185546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2983, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 63700993 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2983, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2983, + "pitch": null, + "reason": null, + "target": { + "x": 1.1859130859375, + "y": 3.0799560546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2983, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2983, + "pitch": null, + "reason": null, + "target": { + "x": 1.601806640625, + "y": 3.0301513671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2983, + "pitch": null, + "reason": null, + "target": { + "x": 0.8365478515625, + "y": 0.795166015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2984, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2984, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2984, + "pitch": null, + "reason": null, + "target": { + "x": 0.8035888671875, + "y": 0.78515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2986, + "target": { + "x": 13.0020751953125, + "y": 53.24072265625, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2986, + "sequence": 180, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 2986, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2986, + "pitch": null, + "reason": null, + "target": { + "x": 0.769775390625, + "y": 0.7747802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2987, + "pitch": null, + "reason": null, + "target": { + "x": 0.705810546875, + "y": 0.7666015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2988, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7362060546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": 9282, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2988, + "pitch": null, + "reason": null, + "target": { + "x": 1.1571044921875, + "y": 3.093505859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2988, + "target": { + "x": 13.1964111328125, + "y": 52.837890625, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2988, + "sequence": 181, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2988, + "target": { + "x": 24.3658447265625, + "y": 50.123046875, + "z": 4.9947509765625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2988, + "sequence": 193, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2990, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7001953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2991, + "target": { + "x": 24.4520263671875, + "y": 50.0081787109375, + "z": 4.9942626953125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2991, + "sequence": 194, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2991, + "pitch": null, + "reason": null, + "target": { + "x": 0.7371826171875, + "y": 0.764892578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": 10374, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2993, + "pitch": null, + "reason": null, + "target": { + "x": 1.1177978515625, + "y": 3.112060546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2993, + "target": { + "x": 13.2154541015625, + "y": 52.7025146484375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2993, + "sequence": 182, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2995, + "sequence": 195, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2998, + "pitch": null, + "reason": null, + "target": { + "x": 1.40673828125, + "y": 0.6590576171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2998, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 2998, + "target": { + "x": 24.423828125, + "y": 50.091796875, + "z": 4.994384765625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 2998, + "sequence": 196, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2998, + "pitch": null, + "reason": null, + "target": { + "x": 0.7149658203125, + "y": 0.7412109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 56, + "unitLink": 252 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55574529, + 55836673, + 56098817, + 56360961, + 57147393, + 57409537, + 58720257, + 59244545, + 61079553, + 62128129, + 62652417, + 63963137 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 2999, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 2999, + "pitch": null, + "reason": null, + "target": { + "x": 1.3707275390625, + "y": 0.662841796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3001, + "pitch": null, + "reason": null, + "target": { + "x": 1.3145751953125, + "y": 0.664306640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3001, + "target": { + "x": 24.3719482421875, + "y": 50.385498046875, + "z": 4.9947509765625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3001, + "sequence": 197, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3002, + "pitch": null, + "reason": null, + "target": { + "x": 1.281494140625, + "y": 0.664306640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3002, + "pitch": null, + "reason": null, + "target": { + "x": 0.6944580078125, + "y": 0.7108154296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3003, + "pitch": null, + "reason": null, + "target": { + "x": 1.2440185546875, + "y": 0.66357421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3005, + "userid": { + "userId": 0 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 197601, + "y": 416007, + "z": 40929 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3006, + "otherUnit": null, + "sequence": 198, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3008, + "pitch": null, + "reason": null, + "target": { + "x": 1.1915283203125, + "y": 0.6575927734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3009, + "pitch": null, + "reason": null, + "target": { + "x": 1.1533203125, + "y": 0.6553955078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3010, + "pitch": null, + "reason": null, + "target": { + "x": 1.12109375, + "y": 0.65380859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 3010, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 24.3004150390625, + "y": 49.6287841796875, + "z": 5.244873046875 + }, + "snapshotUnitLink": 71, + "snapshotUpkeepPlayerId": 2, + "tag": 62390275, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3010, + "sequence": 183, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 214354, + "y": 396606, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3010, + "otherUnit": null, + "sequence": 199, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3012, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3013, + "pitch": null, + "reason": null, + "target": { + "x": 1.0894775390625, + "y": 0.653076171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3013, + "target": { + "x": 26.266357421875, + "y": 48.0078125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3013, + "sequence": 200, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3014, + "pitch": null, + "reason": null, + "target": { + "x": 1.0565185546875, + "y": 0.653076171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3016, + "pitch": null, + "reason": null, + "target": { + "x": 1.130126953125, + "y": 3.1474609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3016, + "target": { + "x": 24.1641845703125, + "y": 49.6695556640625, + "z": 4.9959716796875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3016, + "sequence": 184, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3017, + "pitch": null, + "reason": null, + "target": { + "x": 0.748291015625, + "y": 0.7001953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3017, + "pitch": null, + "reason": null, + "target": { + "x": 1.021240234375, + "y": 0.6553955078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3017, + "target": { + "x": 26.1575927734375, + "y": 47.926025390625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3017, + "sequence": 201, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3018, + "pitch": null, + "reason": null, + "target": { + "x": 0.78662109375, + "y": 0.7001953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3018, + "pitch": null, + "reason": null, + "target": { + "x": 0.978515625, + "y": 0.6575927734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 3018, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 25.0335693359375, + "y": 49.05029296875, + "z": 5.244140625 + }, + "snapshotUnitLink": 71, + "snapshotUpkeepPlayerId": 2, + "tag": 62390275, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3018, + "sequence": 185, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3020, + "pitch": null, + "reason": null, + "target": { + "x": 0.832275390625, + "y": 0.7001953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3020, + "pitch": null, + "reason": null, + "target": { + "x": 1.17724609375, + "y": 3.176025390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3021, + "pitch": null, + "reason": null, + "target": { + "x": 0.945556640625, + "y": 0.659912109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 214198, + "y": 394931, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3021, + "otherUnit": null, + "sequence": 202, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3023, + "pitch": null, + "reason": null, + "target": { + "x": 0.913330078125, + "y": 0.661376953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3023, + "pitch": null, + "reason": null, + "target": { + "x": 1.211669921875, + "y": 3.189453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3024, + "pitch": null, + "reason": null, + "target": { + "x": 0.832275390625, + "y": 0.642578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3024, + "pitch": null, + "reason": null, + "target": { + "x": 0.832275390625, + "y": 0.6090087890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3025, + "pitch": null, + "reason": null, + "target": { + "x": 0.832275390625, + "y": 0.5706787109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3025, + "pitch": null, + "reason": null, + "target": { + "x": 0.7257080078125, + "y": 0.7001953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3027, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 214092, + "y": 392169, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3028, + "otherUnit": null, + "sequence": 203, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3029, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3029, + "pitch": null, + "reason": null, + "target": { + "x": 0.7620849609375, + "y": 0.6832275390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 213405, + "y": 392465, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3031, + "otherUnit": null, + "sequence": 204, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 55312385 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3032, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3032, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3032, + "pitch": null, + "reason": null, + "target": { + "x": 0.7845458984375, + "y": 0.6549072265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 65011713, + 65273858 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3035, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3035, + "pitch": null, + "reason": null, + "target": { + "x": 0.80615234375, + "y": 0.6185302734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3036, + "pitch": null, + "reason": null, + "target": { + "x": 1.1781005859375, + "y": 3.1976318359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3036, + "otherUnit": null, + "sequence": 186, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3036, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3038, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 65011713 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3038, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3038, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3039, + "pitch": null, + "reason": null, + "target": { + "x": 1.1436767578125, + "y": 3.20751953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3039, + "sequence": 187, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3039, + "pitch": null, + "reason": null, + "target": { + "x": 0.825927734375, + "y": 0.5823974609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 55312385 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3040, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 65273858 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3040, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3040, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3042, + "pitch": null, + "reason": null, + "target": { + "x": 0.792236328125, + "y": 0.6322021484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3042, + "pitch": null, + "reason": null, + "target": { + "x": 1.1060791015625, + "y": 3.2266845703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3042, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3043, + "pitch": null, + "reason": null, + "target": { + "x": 0.7305908203125, + "y": 0.69384765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3043, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3044, + "pitch": null, + "reason": null, + "target": { + "x": 0.7161865234375, + "y": 0.7249755859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3044, + "pitch": null, + "reason": null, + "target": { + "x": 1.0733642578125, + "y": 3.244384765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3046, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3046, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3047, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3049, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3050, + "pitch": null, + "reason": null, + "target": { + "x": 1.0391845703125, + "y": 3.258544921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3050, + "pitch": null, + "reason": null, + "target": { + "x": 0.797119140625, + "y": 0.6170654296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3051, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3053, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3053, + "pitch": null, + "reason": null, + "target": { + "x": 0.776611328125, + "y": 0.644287109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3054, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 65798145 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3054, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3054, + "pitch": null, + "reason": null, + "target": { + "x": 0.7557373046875, + "y": 0.672119140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3055, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3055, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.0914306640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3057, + "pitch": null, + "reason": null, + "target": { + "x": 1.0035400390625, + "y": 3.2701416015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3057, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 2.9744873046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3057, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3057, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3057, + "pitch": null, + "reason": null, + "target": { + "x": 0.73388671875, + "y": 0.701171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 129415, + "y": 163266, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3058, + "otherUnit": null, + "sequence": 205, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3060, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3060, + "pitch": null, + "reason": null, + "target": { + "x": 0.9638671875, + "y": 3.294189453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3061, + "pitch": null, + "reason": null, + "target": { + "x": 0.9356689453125, + "y": 3.31396484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3064, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3065, + "pitch": null, + "reason": null, + "target": { + "x": 0.90576171875, + "y": 3.334716796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 209053, + "y": 397665, + "z": 42960 + }, + "snapshotUnitLink": 71, + "snapshotUpkeepPlayerId": 2, + "tag": 62390275, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3065, + "otherUnit": null, + "sequence": 188, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3068, + "pitch": null, + "reason": null, + "target": { + "x": 1.5948486328125, + "y": 2.989990234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3072, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3075, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3075, + "otherUnit": null, + "sequence": 206, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3075, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3076, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 56623105 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3077, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3080, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3081, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 194166, + "y": 408087, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3081, + "otherUnit": null, + "sequence": 207, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 56, + "unitLink": 252 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56885249, + 57147393, + 57409537, + 58720257, + 59768834, + 61079553, + 62128129, + 62652417, + 63963137 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3083, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3083, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3084, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 18, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51118081, + 51380225, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3086, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 192603, + "y": 399637, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3086, + "otherUnit": null, + "sequence": 208, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3088, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3088, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3088, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3091, + "pitch": null, + "reason": null, + "target": { + "x": 1.4747314453125, + "y": 0.644287109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3094, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3094, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3095, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3095, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 191335, + "y": 398901, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3095, + "otherUnit": null, + "sequence": 210, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 66060289, + 66322433 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3098, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3098, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3099, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 191472, + "y": 398815, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3099, + "otherUnit": null, + "sequence": 211, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3101, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 62914563, + 66584577 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3102, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3105, + "pitch": null, + "reason": null, + "target": { + "x": 1.3577880859375, + "y": 0.73583984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3106, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3106, + "pitch": null, + "reason": null, + "target": { + "x": 1.1807861328125, + "y": 1.0108642578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3106, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3107, + "pitch": null, + "reason": null, + "target": { + "x": 1.1807861328125, + "y": 1.153076171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 192493, + "y": 399308, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3107, + "otherUnit": null, + "sequence": 213, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3109, + "pitch": null, + "reason": null, + "target": { + "x": 0.7161865234375, + "y": 0.7730712890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3109, + "pitch": null, + "reason": null, + "target": { + "x": 0.9185791015625, + "y": 0.6943359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3109, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3110, + "pitch": null, + "reason": null, + "target": { + "x": 0.7161865234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 192394, + "y": 401866, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3112, + "otherUnit": null, + "sequence": 214, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3113, + "pitch": null, + "reason": null, + "target": { + "x": 0.9395751953125, + "y": 0.7379150390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3113, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3113, + "pitch": null, + "reason": null, + "target": { + "x": 0.7161865234375, + "y": 0.7274169921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3116, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3116, + "pitch": null, + "reason": null, + "target": { + "x": 0.9613037109375, + "y": 0.7799072265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3117, + "pitch": null, + "reason": null, + "target": { + "x": 0.9815673828125, + "y": 0.8128662109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3117, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3118, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3118, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3118, + "pitch": null, + "reason": null, + "target": { + "x": 0.7161865234375, + "y": 0.7625732421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3121, + "pitch": null, + "reason": null, + "target": { + "x": 0.99951171875, + "y": 0.8465576171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3121, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3122, + "pitch": null, + "reason": null, + "target": { + "x": 1.0213623046875, + "y": 0.8834228515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3122, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.29443359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3122, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3122, + "pitch": null, + "reason": null, + "target": { + "x": 0.7161865234375, + "y": 0.7958984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3124, + "pitch": null, + "reason": null, + "target": { + "x": 0.7161865234375, + "y": 0.7618408203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 204719, + "y": 395301, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3125, + "otherUnit": null, + "sequence": 217, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3127, + "pitch": null, + "reason": null, + "target": { + "x": 1.049072265625, + "y": 0.9178466796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3127, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 206332, + "y": 395544, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3128, + "otherUnit": null, + "sequence": 218, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3129, + "pitch": null, + "reason": null, + "target": { + "x": 1.091064453125, + "y": 0.9478759765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3129, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3131, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3131, + "pitch": null, + "reason": null, + "target": { + "x": 1.121826171875, + "y": 0.965087890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3131, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3131, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3132, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.0281982421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3132, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 2.9840087890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3133, + "pitch": null, + "reason": null, + "target": { + "x": 1.16162109375, + "y": 0.9927978515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3135, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3136, + "pitch": null, + "reason": null, + "target": { + "x": 1.1893310546875, + "y": 1.0340576171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3139, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3139, + "pitch": null, + "reason": null, + "target": { + "x": 0.7161865234375, + "y": 0.7635498046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3142, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3148, + "target": { + "x": 25.3538818359375, + "y": 48.2841796875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3148, + "sequence": 189, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3150, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3150, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3153, + "sequence": 190, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3154, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3155, + "sequence": 191, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3155, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 18, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 56, + "unitLink": 252 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56885249, + 57147393, + 57409537, + 58720257, + 59768834, + 61079553, + 62128129, + 62652417, + 64487426, + 63963137 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3158, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3158, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3158, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3158, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3161, + "target": { + "x": 25.2264404296875, + "y": 48.2655029296875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3161, + "sequence": 192, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3163, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3163, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3165, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3165, + "pitch": null, + "reason": null, + "target": { + "x": 1.11328125, + "y": 0.926513671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 56623105 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3165, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3165, + "target": { + "x": 25.179443359375, + "y": 48.236083984375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3165, + "sequence": 193, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3169, + "target": { + "x": 24.898193359375, + "y": 48.110107421875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3169, + "sequence": 194, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3172, + "target": { + "x": 24.7589111328125, + "y": 48.0341796875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3172, + "sequence": 195, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3172, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3174, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3176, + "sequence": 196, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 139 + }, + "cmdFlags": 16777472, + "data": { + "TargetPoint": { + "x": 145408, + "y": 137216, + "z": 49120 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3176, + "otherUnit": null, + "sequence": 222, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3180, + "sequence": 197, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 67371009, + 67633153 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3180, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 67371009, + 67633153 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3180, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3181, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3183, + "pitch": null, + "reason": null, + "target": { + "x": 1.156494140625, + "y": 1.04248046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3184, + "target": { + "x": 24.7607421875, + "y": 47.976318359375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3184, + "sequence": 198, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3184, + "pitch": null, + "reason": null, + "target": { + "x": 1.5186767578125, + "y": 2.9947509765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3185, + "pitch": null, + "reason": null, + "target": { + "x": 1.623046875, + "y": 3.0823974609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3187, + "pitch": null, + "reason": null, + "target": { + "x": 1.623046875, + "y": 3.0823974609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3191, + "pitch": null, + "reason": null, + "target": { + "x": 1.12451171875, + "y": 1.0452880859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 199069, + "y": 398283, + "z": 42966 + }, + "snapshotUnitLink": 71, + "snapshotUpkeepPlayerId": 2, + "tag": 62390275, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3191, + "otherUnit": null, + "sequence": 199, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 188163, + "y": 398537, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3192, + "otherUnit": null, + "sequence": 223, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3195, + "pitch": null, + "reason": null, + "target": { + "x": 1.623046875, + "y": 3.1175537109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3196, + "pitch": null, + "reason": null, + "target": { + "x": 1.623046875, + "y": 3.1495361328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3198, + "pitch": null, + "reason": null, + "target": { + "x": 1.58154296875, + "y": 3.152099609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 187611, + "y": 413041, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3198, + "otherUnit": null, + "sequence": 224, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 187055, + "y": 413127, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3202, + "otherUnit": null, + "sequence": 225, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3203, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3206, + "pitch": null, + "reason": null, + "target": { + "x": 1.623046875, + "y": 3.1177978515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 590 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 189786, + "y": 412144, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3207, + "otherUnit": null, + "sequence": 226, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 191132, + "y": 420359, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3210, + "otherUnit": null, + "sequence": 227, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 25 + } + ], + "addUnitTags": [ + 67108865 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3211, + "userid": { + "userId": 2 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 200202, + "y": 407398, + "z": 40914 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3211, + "otherUnit": null, + "sequence": 200, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3213, + "target": { + "x": 23.4871826171875, + "y": 52.42919921875, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3213, + "sequence": 228, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3213, + "pitch": null, + "reason": null, + "target": { + "x": 1.623046875, + "y": 3.149169921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3214, + "target": { + "x": 24.0250244140625, + "y": 50.5045166015625, + "z": 4.996826171875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3214, + "sequence": 201, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3217, + "target": { + "x": 23.77978515625, + "y": 50.9241943359375, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3217, + "sequence": 202, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3220, + "target": { + "x": 23.6719970703125, + "y": 51.4124755859375, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3220, + "sequence": 203, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 194254, + "y": 428786, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3220, + "otherUnit": null, + "sequence": 229, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3221, + "pitch": null, + "reason": null, + "target": { + "x": 1.5484619140625, + "y": 3.131103515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3222, + "target": { + "x": 23.62548828125, + "y": 51.733642578125, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3222, + "sequence": 204, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 195589, + "y": 439479, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3224, + "otherUnit": null, + "sequence": 230, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3225, + "target": { + "x": 23.150146484375, + "y": 48.4586181640625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3225, + "sequence": 205, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3226, + "pitch": null, + "reason": null, + "target": { + "x": 1.5140380859375, + "y": 3.1416015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3226, + "target": { + "x": 23.814208984375, + "y": 53.3968505859375, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3226, + "sequence": 231, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3228, + "target": { + "x": 23.8983154296875, + "y": 47.82275390625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3228, + "sequence": 206, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3228, + "pitch": null, + "reason": null, + "target": { + "x": 1.5186767578125, + "y": 3.0400390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3229, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3229, + "pitch": null, + "reason": null, + "target": { + "x": 1.5186767578125, + "y": 3.0946044921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3231, + "target": { + "x": 23.99951171875, + "y": 47.039794921875, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3231, + "sequence": 207, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3232, + "pitch": null, + "reason": null, + "target": { + "x": 1.4974365234375, + "y": 3.171630859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3233, + "target": { + "x": 24.1158447265625, + "y": 46.590087890625, + "z": 4.9962158203125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3233, + "sequence": 208, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3235, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 198370, + "y": 430920, + "z": 40925 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3236, + "otherUnit": null, + "sequence": 232, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3237, + "target": { + "x": 24.4588623046875, + "y": 46.461669921875, + "z": 4.9942626953125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3237, + "sequence": 209, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3239, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3240, + "target": { + "x": 26.4970703125, + "y": 47.0775146484375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3240, + "sequence": 210, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3243, + "target": { + "x": 27.1785888671875, + "y": 47.8326416015625, + "z": 4.9112548828125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3243, + "sequence": 211, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 201912, + "y": 403490, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3244, + "otherUnit": null, + "sequence": 233, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3246, + "target": { + "x": 27.623291015625, + "y": 48.13525390625, + "z": 4.875732421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3246, + "sequence": 212, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 70, + "unitLink": 71 + } + ], + "addUnitTags": [ + 62390275 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3247, + "userid": { + "userId": 1 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3247, + "sequence": 234, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3250, + "target": { + "x": 28.0341796875, + "y": 48.3709716796875, + "z": 4.8319091796875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3250, + "sequence": 213, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3250, + "target": { + "x": 24.72412109375, + "y": 49.2352294921875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3250, + "sequence": 235, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3251, + "pitch": null, + "reason": null, + "target": { + "x": 1.623046875, + "y": 3.1119384765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3252, + "pitch": null, + "reason": null, + "target": { + "x": 1.623046875, + "y": 3.0751953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3252, + "pitch": null, + "reason": null, + "target": { + "x": 1.516357421875, + "y": 3.1846923828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3254, + "pitch": null, + "reason": null, + "target": { + "x": 1.516357421875, + "y": 3.1358642578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 205966, + "y": 404014, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3255, + "otherUnit": null, + "sequence": 236, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 232785, + "y": 416909, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3258, + "otherUnit": null, + "sequence": 214, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3259, + "pitch": null, + "reason": null, + "target": { + "x": 1.6829833984375, + "y": 3.0751953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3261, + "pitch": null, + "reason": null, + "target": { + "x": 1.7205810546875, + "y": 3.052001953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3261, + "pitch": null, + "reason": null, + "target": { + "x": 1.4942626953125, + "y": 3.2027587890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3261, + "pitch": null, + "reason": null, + "target": { + "x": 1.623046875, + "y": 3.1171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3262, + "pitch": null, + "reason": null, + "target": { + "x": 1.7581787109375, + "y": 2.983154296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3263, + "pitch": null, + "reason": null, + "target": { + "x": 1.7581787109375, + "y": 2.950439453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0f" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3263, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3265, + "pitch": null, + "reason": null, + "target": { + "x": 1.640625, + "y": 3.0877685546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3267, + "pitch": null, + "reason": null, + "target": { + "x": 1.5694580078125, + "y": 3.116943359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 191091, + "y": 432788, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3267, + "otherUnit": null, + "sequence": 237, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 223232, + "y": 452608, + "z": 40912 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 33030145, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3269, + "otherUnit": null, + "sequence": 215, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3269, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.07568359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3269, + "pitch": null, + "reason": null, + "target": { + "x": 1.6658935546875, + "y": 3.05908203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3270, + "pitch": null, + "reason": null, + "target": { + "x": 1.60400390625, + "y": 3.1190185546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 3270, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 27.25, + "y": 55.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 33030145, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3270, + "sequence": 216, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3270, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.1419677734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 194120, + "y": 433259, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3272, + "otherUnit": null, + "sequence": 238, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3272, + "pitch": null, + "reason": null, + "target": { + "x": 1.69482421875, + "y": 3.0252685546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 3273, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 27.25, + "y": 55.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 33030145, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3273, + "sequence": 217, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3273, + "pitch": null, + "reason": null, + "target": { + "x": 1.71728515625, + "y": 2.998779296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3276, + "pitch": null, + "reason": null, + "target": { + "x": 1.73828125, + "y": 2.973876953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3277, + "pitch": null, + "reason": null, + "target": { + "x": 1.614501953125, + "y": 3.148681640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3277, + "target": { + "x": 26.4332275390625, + "y": 54.56396484375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3277, + "sequence": 218, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 194008, + "y": 435547, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3277, + "otherUnit": null, + "sequence": 239, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3278, + "pitch": null, + "reason": null, + "target": { + "x": 1.7022705078125, + "y": 2.9808349609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3280, + "pitch": null, + "reason": null, + "target": { + "x": 1.6629638671875, + "y": 3.02001953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3280, + "target": { + "x": 25.9080810546875, + "y": 54.4173583984375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3280, + "sequence": 219, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3280, + "target": { + "x": 22.364990234375, + "y": 52.3206787109375, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3280, + "sequence": 240, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3281, + "pitch": null, + "reason": null, + "target": { + "x": 1.6021728515625, + "y": 3.080810546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3283, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.115966796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3283, + "pitch": null, + "reason": null, + "target": { + "x": 1.6070556640625, + "y": 3.1807861328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3284, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.151123046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3284, + "target": { + "x": 24.89501953125, + "y": 54.2366943359375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3284, + "sequence": 220, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3284, + "target": { + "x": 21.43359375, + "y": 50.70703125, + "z": 4.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3284, + "sequence": 241, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3287, + "target": { + "x": 21.38818359375, + "y": 50.160400390625, + "z": 4.9971923828125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3287, + "sequence": 242, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3288, + "target": { + "x": 24.180908203125, + "y": 54.054931640625, + "z": 4.995849609375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3288, + "sequence": 221, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3288, + "pitch": null, + "reason": null, + "target": { + "x": 1.702392578125, + "y": 3.0008544921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3289, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.2015380859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3291, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.24072265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3291, + "pitch": null, + "reason": null, + "target": { + "x": 1.5848388671875, + "y": 3.2083740234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3291, + "target": { + "x": 23.87060546875, + "y": 53.9720458984375, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3291, + "sequence": 222, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3291, + "target": { + "x": 21.5980224609375, + "y": 49.4085693359375, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3291, + "sequence": 243, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3291, + "pitch": null, + "reason": null, + "target": { + "x": 1.6805419921875, + "y": 3.0277099609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3292, + "pitch": null, + "reason": null, + "target": { + "x": 1.65966796875, + "y": 3.056884765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3293, + "target": { + "x": 22.764404296875, + "y": 48.4381103515625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3293, + "sequence": 244, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3295, + "target": { + "x": 23.4835205078125, + "y": 53.4818115234375, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3295, + "sequence": 223, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3295, + "pitch": null, + "reason": null, + "target": { + "x": 1.6436767578125, + "y": 3.0848388671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3296, + "target": { + "x": 23.7406005859375, + "y": 47.9503173828125, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3296, + "sequence": 245, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3296, + "pitch": null, + "reason": null, + "target": { + "x": 1.630615234375, + "y": 3.11328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3299, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.1719970703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3299, + "target": { + "x": 23.31591796875, + "y": 53.185791015625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3299, + "sequence": 224, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3299, + "pitch": null, + "reason": null, + "target": { + "x": 1.6192626953125, + "y": 3.1431884765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3300, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.1375732421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3300, + "target": { + "x": 24.3006591796875, + "y": 47.7845458984375, + "z": 4.9951171875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3300, + "sequence": 246, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3302, + "pitch": null, + "reason": null, + "target": { + "x": 1.468994140625, + "y": 3.2220458984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3302, + "pitch": null, + "reason": null, + "target": { + "x": 1.5521240234375, + "y": 3.216796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3302, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3302, + "pitch": null, + "reason": null, + "target": { + "x": 1.605712890625, + "y": 3.1837158203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3303, + "otherUnit": null, + "sequence": 247, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3304, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3306, + "pitch": null, + "reason": null, + "target": { + "x": 1.5245361328125, + "y": 3.189453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3306, + "target": { + "x": 24.0806884765625, + "y": 50.010986328125, + "z": 4.9964599609375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3306, + "sequence": 225, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3306, + "pitch": null, + "reason": null, + "target": { + "x": 1.5186767578125, + "y": 3.0621337890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 208915, + "y": 382321, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3307, + "otherUnit": null, + "sequence": 248, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3308, + "pitch": null, + "reason": null, + "target": { + "x": 1.4422607421875, + "y": 3.2020263671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3308, + "target": { + "x": 24.565185546875, + "y": 49.292236328125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3308, + "sequence": 226, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3310, + "target": { + "x": 25.6365966796875, + "y": 46.773681640625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3310, + "sequence": 249, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": 9914, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3311, + "pitch": null, + "reason": null, + "target": { + "x": 1.53173828125, + "y": 3.157958984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3313, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3313, + "pitch": null, + "reason": null, + "target": { + "x": 1.5894775390625, + "y": 3.151123046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3314, + "pitch": null, + "reason": null, + "target": { + "x": 1.4366455078125, + "y": 3.1705322265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 205768, + "y": 400110, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3314, + "otherUnit": null, + "sequence": 227, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3314, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3315, + "pitch": null, + "reason": null, + "target": { + "x": 1.5506591796875, + "y": 3.125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3315, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3317, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3318, + "target": { + "x": 26.3973388671875, + "y": 47.6055908203125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3318, + "sequence": 250, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3319, + "pitch": null, + "reason": null, + "target": { + "x": 1.4468994140625, + "y": 3.1348876953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3319, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3321, + "pitch": null, + "reason": null, + "target": { + "x": 1.5760498046875, + "y": 3.098876953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3321, + "target": { + "x": 27.7581787109375, + "y": 47.8480224609375, + "z": 4.770263671875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3321, + "sequence": 251, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 61865989, + 66846721 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3324, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3324, + "otherUnit": null, + "sequence": 228, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3324, + "target": { + "x": 28.445068359375, + "y": 48.0201416015625, + "z": 4.6414794921875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3324, + "sequence": 252, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3325, + "pitch": null, + "reason": null, + "target": { + "x": 1.4625244140625, + "y": 3.1063232421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 61865989 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3325, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3326, + "pitch": null, + "reason": null, + "target": { + "x": 1.5941162109375, + "y": 3.0718994140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3326, + "target": { + "x": 28.7166748046875, + "y": 48.0550537109375, + "z": 4.5823974609375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3326, + "sequence": 253, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3329, + "pitch": null, + "reason": null, + "target": { + "x": 1.4814453125, + "y": 3.0802001953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3330, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.092041015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3330, + "pitch": null, + "reason": null, + "target": { + "x": 1.6192626953125, + "y": 3.045166015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3330, + "target": { + "x": 29.1077880859375, + "y": 48.03515625, + "z": 4.4796142578125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3330, + "sequence": 254, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3332, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.0567626953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3333, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3333, + "target": { + "x": 29.77978515625, + "y": 47.9013671875, + "z": 4.2781982421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3333, + "sequence": 255, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3334, + "pitch": null, + "reason": null, + "target": { + "x": 1.5054931640625, + "y": 3.05810546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3334, + "pitch": null, + "reason": null, + "target": { + "x": 1.649658203125, + "y": 3.0286865234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51118081, + 51380225, + 51642369 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3336, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3336, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3337, + "pitch": null, + "reason": null, + "target": { + "x": 1.6873779296875, + "y": 3.016357421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3337, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3337, + "pitch": null, + "reason": null, + "target": { + "x": 1.5650634765625, + "y": 3.0621337890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3337, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.1156005859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3339, + "pitch": null, + "reason": null, + "target": { + "x": 1.6162109375, + "y": 3.0621337890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3339, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3340, + "pitch": null, + "reason": null, + "target": { + "x": 1.5394287109375, + "y": 3.0426025390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3340, + "pitch": null, + "reason": null, + "target": { + "x": 1.7264404296875, + "y": 3.0064697265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3340, + "pitch": null, + "reason": null, + "target": { + "x": 1.6474609375, + "y": 3.0621337890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3341, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.073974609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3344, + "pitch": null, + "reason": null, + "target": { + "x": 1.57080078125, + "y": 3.0352783203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3344, + "pitch": null, + "reason": null, + "target": { + "x": 1.763916015625, + "y": 2.998046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3344, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3344, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.0372314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3348, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.004638671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3350, + "pitch": null, + "reason": null, + "target": { + "x": 1.603271484375, + "y": 3.0303955078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3351, + "pitch": null, + "reason": null, + "target": { + "x": 1.794189453125, + "y": 2.9864501953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 253170, + "y": 395116, + "z": 33420 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3352, + "otherUnit": null, + "sequence": 256, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 432128, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 26214401, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3354, + "otherUnit": null, + "sequence": 229, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3355, + "pitch": null, + "reason": null, + "target": { + "x": 1.6402587890625, + "y": 3.026123046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3356, + "pitch": null, + "reason": null, + "target": { + "x": 1.82568359375, + "y": 2.9693603515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 258385, + "y": 394973, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3356, + "otherUnit": null, + "sequence": 257, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3359, + "pitch": null, + "reason": null, + "target": { + "x": 1.67431640625, + "y": 3.0216064453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3359, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3359, + "target": { + "x": 31.8546142578125, + "y": 48.325439453125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3359, + "sequence": 258, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3363, + "pitch": null, + "reason": null, + "target": { + "x": 1.8563232421875, + "y": 2.9471435546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3363, + "target": { + "x": 33.1002197265625, + "y": 48.4268798828125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3363, + "sequence": 259, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3365, + "pitch": null, + "reason": null, + "target": { + "x": 1.710205078125, + "y": 3.01513671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x03" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3366, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3369, + "pitch": null, + "reason": null, + "target": { + "x": 1.6278076171875, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3370, + "pitch": null, + "reason": null, + "target": { + "x": 1.6917724609375, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3370, + "pitch": null, + "reason": null, + "target": { + "x": 1.7415771484375, + "y": 3.0093994140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 272141, + "y": 396409, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3370, + "otherUnit": null, + "sequence": 260, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3371, + "pitch": null, + "reason": null, + "target": { + "x": 1.7318115234375, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 3371, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 54.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 27525121, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3371, + "sequence": 230, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3373, + "pitch": null, + "reason": null, + "target": { + "x": 1.717041015625, + "y": 3.0621337890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3374, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3374, + "pitch": null, + "reason": null, + "target": { + "x": 1.750732421875, + "y": 3.0621337890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 279529, + "y": 401733, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3374, + "otherUnit": null, + "sequence": 261, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3376, + "pitch": null, + "reason": null, + "target": { + "x": 1.7752685546875, + "y": 3.0059814453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3377, + "pitch": null, + "reason": null, + "target": { + "x": 1.8031005859375, + "y": 2.9471435546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3377, + "pitch": null, + "reason": null, + "target": { + "x": 1.62939453125, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3378, + "target": { + "x": 24.712158203125, + "y": 48.9698486328125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3378, + "sequence": 231, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3378, + "target": { + "x": 33.6041259765625, + "y": 49.166015625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3378, + "sequence": 262, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3381, + "pitch": null, + "reason": null, + "target": { + "x": 1.8076171875, + "y": 3.004638671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3381, + "target": { + "x": 33.218994140625, + "y": 49.7308349609375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3381, + "sequence": 263, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3381, + "pitch": null, + "reason": null, + "target": { + "x": 1.6673583984375, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3384, + "target": { + "x": 32.740478515625, + "y": 50.451171875, + "z": 4.2613525390625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3384, + "sequence": 264, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3384, + "pitch": null, + "reason": null, + "target": { + "x": 1.7081298828125, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3385, + "pitch": null, + "reason": null, + "target": { + "x": 1.767822265625, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3385, + "pitch": null, + "reason": null, + "target": { + "x": 1.8013916015625, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3385, + "pitch": null, + "reason": null, + "target": { + "x": 1.888427734375, + "y": 2.9473876953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3386, + "pitch": null, + "reason": null, + "target": { + "x": 1.8358154296875, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3386, + "pitch": null, + "reason": null, + "target": { + "x": 1.8399658203125, + "y": 3.0045166015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3386, + "target": { + "x": 30.5196533203125, + "y": 50.9990234375, + "z": 4.8675537109375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3386, + "sequence": 265, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3388, + "pitch": null, + "reason": null, + "target": { + "x": 1.8758544921875, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3388, + "pitch": null, + "reason": null, + "target": { + "x": 1.923828125, + "y": 2.9656982421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3388, + "target": { + "x": 25.459228515625, + "y": 49.319580078125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3388, + "sequence": 232, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3389, + "target": { + "x": 29.0279541015625, + "y": 50.7462158203125, + "z": 4.997802734375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3389, + "sequence": 266, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3389, + "pitch": null, + "reason": null, + "target": { + "x": 1.7418212890625, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3393, + "pitch": null, + "reason": null, + "target": { + "x": 1.873046875, + "y": 3.0081787109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 225604, + "y": 409842, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3393, + "otherUnit": null, + "sequence": 267, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3393, + "pitch": null, + "reason": null, + "target": { + "x": 1.7740478515625, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3396, + "target": { + "x": 23.8603515625, + "y": 50.52001953125, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3396, + "sequence": 233, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 221202, + "y": 407150, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3396, + "otherUnit": null, + "sequence": 268, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3396, + "pitch": null, + "reason": null, + "target": { + "x": 1.806884765625, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3399, + "pitch": null, + "reason": null, + "target": { + "x": 1.9039306640625, + "y": 3.02001953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3399, + "target": { + "x": 25.9814453125, + "y": 49.6031494140625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3399, + "sequence": 269, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3400, + "pitch": null, + "reason": null, + "target": { + "x": 1.841796875, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 70, + "unitLink": 71 + } + ], + "addUnitTags": [ + 62390275 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3403, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x1f" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3403, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3403, + "target": { + "x": 24.539306640625, + "y": 49.15087890625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3403, + "sequence": 270, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3403, + "pitch": null, + "reason": null, + "target": { + "x": 1.8741455078125, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3404, + "target": { + "x": 25.670166015625, + "y": 50.2137451171875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3404, + "sequence": 234, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3406, + "pitch": null, + "reason": null, + "target": { + "x": 1.9158935546875, + "y": 3.05126953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3406, + "target": { + "x": 24.1976318359375, + "y": 48.8209228515625, + "z": 4.9957275390625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3406, + "sequence": 271, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3408, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3411, + "target": { + "x": 28.343017578125, + "y": 50.7435302734375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3411, + "sequence": 235, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 192924, + "y": 400696, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3411, + "otherUnit": null, + "sequence": 272, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3415, + "pitch": null, + "reason": null, + "target": { + "x": 1.890625, + "y": 3.0753173828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3415, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.9888916015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 246364, + "y": 410418, + "z": 38947 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3415, + "otherUnit": null, + "sequence": 236, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 189305, + "y": 403405, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3415, + "otherUnit": null, + "sequence": 273, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3418, + "pitch": null, + "reason": null, + "target": { + "x": 1.8768310546875, + "y": 3.0137939453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3418, + "target": { + "x": 30.3486328125, + "y": 50.0006103515625, + "z": 4.6607666015625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3418, + "sequence": 237, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3418, + "target": { + "x": 24.95458984375, + "y": 49.302734375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3418, + "sequence": 274, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3421, + "pitch": null, + "reason": null, + "target": { + "x": 1.8568115234375, + "y": 3.0828857421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3421, + "pitch": null, + "reason": null, + "target": { + "x": 1.8492431640625, + "y": 3.0382080078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3421, + "target": { + "x": 29.5550537109375, + "y": 48.5244140625, + "z": 4.4901123046875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3421, + "sequence": 275, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3422, + "target": { + "x": 30.3568115234375, + "y": 50.0020751953125, + "z": 4.6590576171875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3422, + "sequence": 238, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3423, + "target": { + "x": 30.8853759765625, + "y": 48.1944580078125, + "z": 4.0750732421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3423, + "sequence": 276, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3425, + "pitch": null, + "reason": null, + "target": { + "x": 1.8204345703125, + "y": 3.05859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3428, + "pitch": null, + "reason": null, + "target": { + "x": 1.824951171875, + "y": 3.086669921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 257413, + "y": 393143, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3432, + "otherUnit": null, + "sequence": 277, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3434, + "pitch": null, + "reason": null, + "target": { + "x": 1.7918701171875, + "y": 3.088623046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 258139, + "y": 392700, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3434, + "otherUnit": null, + "sequence": 278, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3438, + "target": { + "x": 31.5108642578125, + "y": 48.000732421875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3438, + "sequence": 279, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3440, + "pitch": null, + "reason": null, + "target": { + "x": 1.915771484375, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3440, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3441, + "pitch": null, + "reason": null, + "target": { + "x": 1.9837646484375, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3441, + "otherUnit": null, + "sequence": 280, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3441, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3443, + "pitch": null, + "reason": null, + "target": { + "x": 2.015869140625, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3445, + "pitch": null, + "reason": null, + "target": { + "x": 1.8106689453125, + "y": 3.0635986328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3447, + "pitch": null, + "reason": null, + "target": { + "x": 1.8529052734375, + "y": 3.0396728515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 258615, + "y": 390651, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3447, + "otherUnit": null, + "sequence": 281, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3448, + "pitch": null, + "reason": null, + "target": { + "x": 1.91357421875, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 272812, + "y": 394564, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3451, + "otherUnit": null, + "sequence": 282, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3451, + "pitch": null, + "reason": null, + "target": { + "x": 1.9453125, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3452, + "pitch": null, + "reason": null, + "target": { + "x": 1.840087890625, + "y": 3.046142578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3452, + "pitch": null, + "reason": null, + "target": { + "x": 1.8856201171875, + "y": 3.0244140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3453, + "target": { + "x": 33.734130859375, + "y": 48.34814453125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3453, + "sequence": 283, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3455, + "pitch": null, + "reason": null, + "target": { + "x": 1.98388671875, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3458, + "pitch": null, + "reason": null, + "target": { + "x": 1.869873046875, + "y": 3.03125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 220006, + "y": 403766, + "z": 40915 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3458, + "otherUnit": null, + "sequence": 239, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3458, + "target": { + "x": 32.590576171875, + "y": 49.48095703125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3458, + "sequence": 284, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3459, + "pitch": null, + "reason": null, + "target": { + "x": 1.920166015625, + "y": 3.01318359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3459, + "pitch": null, + "reason": null, + "target": { + "x": 2.0152587890625, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3460, + "target": { + "x": 32.5625, + "y": 49.6729736328125, + "z": 4.025390625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3460, + "sequence": 285, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3462, + "target": { + "x": 25.86572265625, + "y": 49.298583984375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3462, + "sequence": 240, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3463, + "pitch": null, + "reason": null, + "target": { + "x": 1.900390625, + "y": 3.0177001953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3466, + "pitch": null, + "reason": null, + "target": { + "x": 1.9530029296875, + "y": 3.0159912109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3466, + "target": { + "x": 24.4808349609375, + "y": 49.2882080078125, + "z": 4.994140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3466, + "sequence": 241, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 240989, + "y": 399264, + "z": 37502 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3466, + "otherUnit": null, + "sequence": 286, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3469, + "target": { + "x": 23.6495361328125, + "y": 49.0826416015625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3469, + "sequence": 242, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3470, + "pitch": null, + "reason": null, + "target": { + "x": 1.9317626953125, + "y": 3.01171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 230604, + "y": 406327, + "z": 40942 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3470, + "otherUnit": null, + "sequence": 287, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3471, + "pitch": null, + "reason": null, + "target": { + "x": 1.9810791015625, + "y": 3.032958984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3471, + "target": { + "x": 23.5057373046875, + "y": 49.009765625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3471, + "sequence": 243, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3474, + "target": { + "x": 26.5462646484375, + "y": 49.740234375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3474, + "sequence": 288, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3475, + "pitch": null, + "reason": null, + "target": { + "x": 1.96240234375, + "y": 3.020263671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3477, + "target": { + "x": 26.40576171875, + "y": 49.6817626953125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3477, + "sequence": 289, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3481, + "target": { + "x": 26.17333984375, + "y": 49.720947265625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3481, + "sequence": 290, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3482, + "pitch": null, + "reason": null, + "target": { + "x": 1.98876953125, + "y": 3.0399169921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3485, + "pitch": null, + "reason": null, + "target": { + "x": 1.9609375, + "y": 3.06005859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3485, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 212398, + "y": 408043, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3485, + "otherUnit": null, + "sequence": 291, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 204902, + "y": 406349, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3490, + "otherUnit": null, + "sequence": 292, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3492, + "pitch": null, + "reason": null, + "target": { + "x": 1.928955078125, + "y": 3.0672607421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 256418, + "y": 411775, + "z": 36773 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3492, + "otherUnit": null, + "sequence": 244, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3493, + "pitch": null, + "reason": null, + "target": { + "x": 1.96142578125, + "y": 3.0594482421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3493, + "target": { + "x": 24.5985107421875, + "y": 49.2550048828125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3493, + "sequence": 293, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3497, + "target": { + "x": 24.445556640625, + "y": 49.1507568359375, + "z": 4.9942626953125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3497, + "sequence": 294, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3499, + "pitch": null, + "reason": null, + "target": { + "x": 1.9287109375, + "y": 3.0667724609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3499, + "target": { + "x": 31.2586669921875, + "y": 49.911865234375, + "z": 4.4110107421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3499, + "sequence": 245, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3500, + "pitch": null, + "reason": null, + "target": { + "x": 1.8936767578125, + "y": 3.0736083984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 207059, + "y": 401168, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3500, + "otherUnit": null, + "sequence": 295, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 250172, + "y": 400666, + "z": 35557 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3504, + "otherUnit": null, + "sequence": 296, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3505, + "pitch": null, + "reason": null, + "target": { + "x": 1.859130859375, + "y": 3.0780029296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3507, + "pitch": null, + "reason": null, + "target": { + "x": 1.89453125, + "y": 3.0728759765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3507, + "target": { + "x": 32.4954833984375, + "y": 48.8087158203125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3507, + "sequence": 297, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3511, + "pitch": null, + "reason": null, + "target": { + "x": 1.955078125, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 242776, + "y": 401573, + "z": 37633 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3511, + "otherUnit": null, + "sequence": 298, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3512, + "pitch": null, + "reason": null, + "target": { + "x": 1.886962890625, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3512, + "pitch": null, + "reason": null, + "target": { + "x": 1.863525390625, + "y": 3.0770263671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3512, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3514, + "pitch": null, + "reason": null, + "target": { + "x": 1.8533935546875, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 271290, + "y": 398826, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3516, + "otherUnit": null, + "sequence": 299, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3518, + "pitch": null, + "reason": null, + "target": { + "x": 1.9813232421875, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 214497, + "y": 405004, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3519, + "otherUnit": null, + "sequence": 246, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3519, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3521, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3522, + "pitch": null, + "reason": null, + "target": { + "x": 1.947265625, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3523, + "target": { + "x": 24.0267333984375, + "y": 49.296142578125, + "z": 4.996826171875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3523, + "sequence": 247, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3525, + "pitch": null, + "reason": null, + "target": { + "x": 1.906494140625, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3526, + "pitch": null, + "reason": null, + "target": { + "x": 1.888671875, + "y": 3.0638427734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3526, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 240229, + "y": 402823, + "z": 38582 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3527, + "otherUnit": null, + "sequence": 300, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3527, + "pitch": null, + "reason": null, + "target": { + "x": 1.865966796875, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 68419585, + 52166657, + 52428801, + 52953089 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3530, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3533, + "pitch": null, + "reason": null, + "target": { + "x": 1.9208984375, + "y": 3.056640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 88064, + "y": 452608, + "z": 49104 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 49807361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3533, + "otherUnit": null, + "sequence": 248, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3536, + "pitch": null, + "reason": null, + "target": { + "x": 1.8935546875, + "y": 3.0621337890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3538, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 235 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3538, + "otherUnit": null, + "sequence": 249, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3540, + "target": { + "x": 28.3822021484375, + "y": 48.9876708984375, + "z": 4.8990478515625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3540, + "sequence": 301, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3541, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 228600, + "y": 402228, + "z": 40942 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3542, + "otherUnit": null, + "sequence": 302, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3544, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 236085, + "y": 417412, + "z": 40930 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3547, + "otherUnit": null, + "sequence": 250, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3547, + "target": { + "x": 27.7257080078125, + "y": 49.052978515625, + "z": 4.997802734375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3547, + "sequence": 303, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 224754, + "y": 402315, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3549, + "otherUnit": null, + "sequence": 304, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3552, + "pitch": null, + "reason": null, + "target": { + "x": 1.88671875, + "y": 3.0594482421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3555, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3559, + "pitch": null, + "reason": null, + "target": { + "x": 1.848388671875, + "y": 3.0643310546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 183993, + "y": 411220, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3559, + "otherUnit": null, + "sequence": 251, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3564, + "pitch": null, + "reason": null, + "target": { + "x": 1.814697265625, + "y": 3.0693359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 238928, + "y": 413219, + "z": 40942 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3564, + "otherUnit": null, + "sequence": 252, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3566, + "pitch": null, + "reason": null, + "target": { + "x": 1.856201171875, + "y": 3.0626220703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 590 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 207962, + "y": 408608, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3567, + "otherUnit": null, + "sequence": 305, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3568, + "target": { + "x": 29.214111328125, + "y": 50.4603271484375, + "z": 4.997802734375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3568, + "sequence": 253, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3570, + "pitch": null, + "reason": null, + "target": { + "x": 1.8245849609375, + "y": 3.0672607421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3571, + "pitch": null, + "reason": null, + "target": { + "x": 1.8126220703125, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3573, + "pitch": null, + "reason": null, + "target": { + "x": 1.7806396484375, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3574, + "pitch": null, + "reason": null, + "target": { + "x": 1.7198486328125, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3574, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3575, + "pitch": null, + "reason": null, + "target": { + "x": 1.7822265625, + "y": 3.07666015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 242032, + "y": 399014, + "z": 37179 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3578, + "otherUnit": null, + "sequence": 306, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3578, + "pitch": null, + "reason": null, + "target": { + "x": 1.8319091796875, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3581, + "pitch": null, + "reason": null, + "target": { + "x": 1.792236328125, + "y": 3.072998046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3581, + "target": { + "x": 30.39404296875, + "y": 48.80712890625, + "z": 4.35107421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3581, + "sequence": 307, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3582, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3582, + "pitch": null, + "reason": null, + "target": { + "x": 1.790283203125, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 247429, + "y": 398225, + "z": 35633 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3585, + "otherUnit": null, + "sequence": 308, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3585, + "pitch": null, + "reason": null, + "target": { + "x": 1.7550048828125, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 256575, + "y": 399315, + "z": 33619 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3589, + "otherUnit": null, + "sequence": 309, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3589, + "pitch": null, + "reason": null, + "target": { + "x": 1.7213134765625, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3590, + "pitch": null, + "reason": null, + "target": { + "x": 1.760986328125, + "y": 3.083251953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3592, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3593, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3594, + "otherUnit": null, + "sequence": 310, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 66846721, + 68157441, + 68681729 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3596, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3596, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3597, + "otherUnit": null, + "sequence": 254, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 66846721 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3598, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3601, + "pitch": null, + "reason": null, + "target": { + "x": 1.8173828125, + "y": 3.0662841796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 236966, + "y": 403044, + "z": 39431 + }, + "snapshotUnitLink": 127, + "snapshotUpkeepPlayerId": 1, + "tag": 66060289, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3601, + "otherUnit": null, + "sequence": 311, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3604, + "pitch": null, + "reason": null, + "target": { + "x": 1.79052734375, + "y": 3.0731201171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3608, + "pitch": null, + "reason": null, + "target": { + "x": 1.8509521484375, + "y": 3.057861328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 269569, + "y": 403167, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3608, + "otherUnit": null, + "sequence": 312, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3611, + "pitch": null, + "reason": null, + "target": { + "x": 1.8221435546875, + "y": 3.0645751953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3611, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3611, + "target": { + "x": 32.9361572265625, + "y": 48.981201171875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3611, + "sequence": 313, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 235 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3614, + "otherUnit": null, + "sequence": 255, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3614, + "target": { + "x": 33.3297119140625, + "y": 48.9423828125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3614, + "sequence": 314, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3616, + "pitch": null, + "reason": null, + "target": { + "x": 1.8544921875, + "y": 3.0565185546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 66322433 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3616, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3616, + "pitch": null, + "reason": null, + "target": { + "x": 1.884521484375, + "y": 3.0526123046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3620, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3623, + "pitch": null, + "reason": null, + "target": { + "x": 1.918212890625, + "y": 3.05126953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 247878, + "y": 400808, + "z": 36152 + }, + "snapshotUnitLink": 127, + "snapshotUpkeepPlayerId": 1, + "tag": 66584577, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3624, + "otherUnit": null, + "sequence": 315, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 210944, + "y": 423936, + "z": 40912 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 60555265, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3627, + "otherUnit": null, + "sequence": 256, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3629, + "pitch": null, + "reason": null, + "target": { + "x": 1.8873291015625, + "y": 3.0421142578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3629, + "pitch": null, + "reason": null, + "target": { + "x": 1.9547119140625, + "y": 3.0501708984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 279978, + "y": 397516, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3629, + "otherUnit": null, + "sequence": 316, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3630, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 203967, + "y": 400610, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3631, + "otherUnit": null, + "sequence": 257, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3635, + "pitch": null, + "reason": null, + "target": { + "x": 1.921630859375, + "y": 3.039794921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3635, + "pitch": null, + "reason": null, + "target": { + "x": 1.988037109375, + "y": 3.04931640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 246750, + "y": 399328, + "z": 36078 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3640, + "otherUnit": null, + "sequence": 317, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3641, + "pitch": null, + "reason": null, + "target": { + "x": 2.0208740234375, + "y": 3.0484619140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3641, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 244759, + "y": 397934, + "z": 36213 + }, + "snapshotUnitLink": 127, + "snapshotUpkeepPlayerId": 1, + "tag": 66584577, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3642, + "otherUnit": null, + "sequence": 318, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3644, + "pitch": null, + "reason": null, + "target": { + "x": 1.9541015625, + "y": 3.037841796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3645, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.123046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3646, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 2.993408203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 240753, + "y": 397982, + "z": 37226 + }, + "snapshotUnitLink": 127, + "snapshotUpkeepPlayerId": 1, + "tag": 66584577, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3646, + "otherUnit": null, + "sequence": 319, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3650, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 252977, + "y": 401893, + "z": 35163 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3653, + "otherUnit": null, + "sequence": 258, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3655, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3656, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3656, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3657, + "pitch": null, + "reason": null, + "target": { + "x": 1.92041015625, + "y": 3.0391845703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3657, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 195533, + "y": 401319, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3659, + "otherUnit": null, + "sequence": 259, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 62914563, + 66584577, + 67371009, + 67633153 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3660, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3660, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3661, + "target": { + "x": 22.81201171875, + "y": 48.8984375, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3661, + "sequence": 260, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3663, + "pitch": null, + "reason": null, + "target": { + "x": 1.888427734375, + "y": 3.04052734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3664, + "pitch": null, + "reason": null, + "target": { + "x": 1.987060546875, + "y": 3.034423828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3664, + "target": { + "x": 22.43896484375, + "y": 48.8485107421875, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3664, + "sequence": 261, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 55312385, + 64487426, + 65273859 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3666, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3667, + "pitch": null, + "reason": null, + "target": { + "x": 1.855712890625, + "y": 3.041748046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3667, + "otherUnit": null, + "sequence": 320, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3668, + "target": { + "x": 22.307373046875, + "y": 48.8087158203125, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3668, + "sequence": 262, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3670, + "pitch": null, + "reason": null, + "target": { + "x": 1.951171875, + "y": 3.03271484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 79872, + "y": 75776, + "z": 49104 + }, + "snapshotUnitLink": 41, + "snapshotUpkeepPlayerId": 2, + "tag": 65536001, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3670, + "otherUnit": null, + "sequence": 321, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3671, + "target": { + "x": 22.1322021484375, + "y": 48.798828125, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3671, + "sequence": 263, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3671, + "otherUnit": null, + "sequence": 322, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3672, + "pitch": null, + "reason": null, + "target": { + "x": 1.818115234375, + "y": 3.0445556640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3672, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3675, + "pitch": null, + "reason": null, + "target": { + "x": 1.917236328125, + "y": 3.032470703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 66584577 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3675, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3675, + "target": { + "x": 22.0301513671875, + "y": 48.8485107421875, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3675, + "sequence": 264, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3676, + "pitch": null, + "reason": null, + "target": { + "x": 1.778564453125, + "y": 3.04833984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3676, + "pitch": null, + "reason": null, + "target": { + "x": 1.8419189453125, + "y": 2.98095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 255148, + "y": 380550, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3676, + "otherUnit": null, + "sequence": 323, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3678, + "pitch": null, + "reason": null, + "target": { + "x": 1.880859375, + "y": 3.032958984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3681, + "pitch": null, + "reason": null, + "target": { + "x": 1.7459716796875, + "y": 3.05078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3681, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3682, + "pitch": null, + "reason": null, + "target": { + "x": 1.8468017578125, + "y": 3.033447265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3683, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3685, + "pitch": null, + "reason": null, + "target": { + "x": 1.80810546875, + "y": 3.0340576171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3685, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3686, + "pitch": null, + "reason": null, + "target": { + "x": 1.7120361328125, + "y": 3.052001953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3687, + "pitch": null, + "reason": null, + "target": { + "x": 1.7701416015625, + "y": 3.0345458984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3690, + "pitch": null, + "reason": null, + "target": { + "x": 1.6798095703125, + "y": 3.052490234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3690, + "pitch": null, + "reason": null, + "target": { + "x": 1.728515625, + "y": 3.03515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3690, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 65273859 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3690, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3694, + "pitch": null, + "reason": null, + "target": { + "x": 1.6435546875, + "y": 3.052734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3694, + "pitch": null, + "reason": null, + "target": { + "x": 1.6868896484375, + "y": 3.03564453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3694, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3694, + "pitch": null, + "reason": null, + "target": { + "x": 1.5682373046875, + "y": 2.993408203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 3694, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 8, + "y": 10.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 786433, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3694, + "sequence": 324, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3696, + "pitch": null, + "reason": null, + "target": { + "x": 1.435546875, + "y": 2.993408203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3697, + "pitch": null, + "reason": null, + "target": { + "x": 1.6478271484375, + "y": 3.035888671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 70, + "unitLink": 71 + } + ], + "addUnitTags": [ + 62390275 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3697, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3697, + "target": { + "x": 16.9637451171875, + "y": 48.063720703125, + "z": 5.4403076171875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3697, + "sequence": 265, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3698, + "pitch": null, + "reason": null, + "target": { + "x": 1.9271240234375, + "y": 2.9228515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3698, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3700, + "pitch": null, + "reason": null, + "target": { + "x": 1.6102294921875, + "y": 3.052734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3701, + "pitch": null, + "reason": null, + "target": { + "x": 1.9429931640625, + "y": 2.85546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3702, + "pitch": null, + "reason": null, + "target": { + "x": 1.6806640625, + "y": 3.003173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3704, + "pitch": null, + "reason": null, + "target": { + "x": 1.64697265625, + "y": 3.0223388671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3704, + "pitch": null, + "reason": null, + "target": { + "x": 1.572509765625, + "y": 3.0528564453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3704, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3704, + "target": { + "x": 32.139404296875, + "y": 43.981689453125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3704, + "sequence": 325, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3705, + "pitch": null, + "reason": null, + "target": { + "x": 1.58056640625, + "y": 3.0887451171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3707, + "pitch": null, + "reason": null, + "target": { + "x": 1.5478515625, + "y": 3.12158203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3707, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3707, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3709, + "pitch": null, + "reason": null, + "target": { + "x": 1.5389404296875, + "y": 3.052490234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3711, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3711, + "pitch": null, + "reason": null, + "target": { + "x": 1.68798828125, + "y": 3.0186767578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3712, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3712, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3713, + "pitch": null, + "reason": null, + "target": { + "x": 1.655029296875, + "y": 3.041748046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3715, + "pitch": null, + "reason": null, + "target": { + "x": 1.50048828125, + "y": 3.0474853515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3715, + "pitch": null, + "reason": null, + "target": { + "x": 1.947998046875, + "y": 2.8934326171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3715, + "pitch": null, + "reason": null, + "target": { + "x": 1.9713134765625, + "y": 2.796142578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3715, + "pitch": null, + "reason": null, + "target": { + "x": 1.628173828125, + "y": 3.0615234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 227898, + "y": 391814, + "z": 38912 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3716, + "otherUnit": null, + "sequence": 266, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3716, + "target": { + "x": 31.439453125, + "y": 42.785888671875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3716, + "sequence": 326, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3718, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3718, + "pitch": null, + "reason": null, + "target": { + "x": 1.601318359375, + "y": 3.08154296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3719, + "pitch": null, + "reason": null, + "target": { + "x": 1.5030517578125, + "y": 3.12158203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3719, + "pitch": null, + "reason": null, + "target": { + "x": 1.466552734375, + "y": 3.0379638671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3719, + "pitch": null, + "reason": null, + "target": { + "x": 1.5718994140625, + "y": 3.1033935546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3720, + "pitch": null, + "reason": null, + "target": { + "x": 1.4654541015625, + "y": 3.12158203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3720, + "pitch": null, + "reason": null, + "target": { + "x": 1.7982177734375, + "y": 3.05908203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3720, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3720, + "pitch": null, + "reason": null, + "target": { + "x": 1.9630126953125, + "y": 2.864013671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3722, + "pitch": null, + "reason": null, + "target": { + "x": 1.4285888671875, + "y": 3.12158203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3722, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3723, + "pitch": null, + "reason": null, + "target": { + "x": 1.35986328125, + "y": 3.12158203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3723, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3723, + "pitch": null, + "reason": null, + "target": { + "x": 1.542236328125, + "y": 3.1239013671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3724, + "target": { + "x": 29.715087890625, + "y": 49.9154052734375, + "z": 4.7978515625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3724, + "sequence": 267, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3726, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3726, + "pitch": null, + "reason": null, + "target": { + "x": 1.5084228515625, + "y": 3.1319580078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3727, + "pitch": null, + "reason": null, + "target": { + "x": 1.970947265625, + "y": 2.828857421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3730, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.88232421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3730, + "pitch": null, + "reason": null, + "target": { + "x": 1.4720458984375, + "y": 3.13134765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3731, + "pitch": null, + "reason": null, + "target": { + "x": 1.9722900390625, + "y": 2.7952880859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3731, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3731, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.78955078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3733, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.7303466796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3733, + "otherUnit": null, + "sequence": 327, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3733, + "pitch": null, + "reason": null, + "target": { + "x": 1.4307861328125, + "y": 3.1282958984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 68681729 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3734, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3734, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.6746826171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3735, + "otherUnit": null, + "sequence": 268, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3735, + "pitch": null, + "reason": null, + "target": { + "x": 1.3853759765625, + "y": 3.1240234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3737, + "pitch": null, + "reason": null, + "target": { + "x": 1.9708251953125, + "y": 2.759033203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3737, + "pitch": null, + "reason": null, + "target": { + "x": 1.4892578125, + "y": 2.993408203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 68681729 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3737, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3737, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3738, + "pitch": null, + "reason": null, + "target": { + "x": 1.322265625, + "y": 3.12158203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3738, + "pitch": null, + "reason": null, + "target": { + "x": 1.2838134765625, + "y": 3.0880126953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3738, + "pitch": null, + "reason": null, + "target": { + "x": 1.7940673828125, + "y": 3.0277099609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3738, + "pitch": null, + "reason": null, + "target": { + "x": 1.7705078125, + "y": 2.8543701171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3739, + "pitch": null, + "reason": null, + "target": { + "x": 1.2462158203125, + "y": 3.0504150390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3739, + "pitch": null, + "reason": null, + "target": { + "x": 1.8494873046875, + "y": 2.7091064453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3741, + "pitch": null, + "reason": null, + "target": { + "x": 1.8494873046875, + "y": 2.6490478515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3742, + "pitch": null, + "reason": null, + "target": { + "x": 1.3511962890625, + "y": 3.1170654296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3743, + "pitch": null, + "reason": null, + "target": { + "x": 1.96875, + "y": 2.726806640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3745, + "pitch": null, + "reason": null, + "target": { + "x": 1.8968505859375, + "y": 2.6490478515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3745, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.738525390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3746, + "pitch": null, + "reason": null, + "target": { + "x": 2.0611572265625, + "y": 2.6490478515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3746, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.7977294921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3746, + "pitch": null, + "reason": null, + "target": { + "x": 1.319091796875, + "y": 3.0972900390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 288166, + "y": 335110, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3748, + "otherUnit": null, + "sequence": 269, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3748, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.846435546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3749, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.939208984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3749, + "pitch": null, + "reason": null, + "target": { + "x": 1.286865234375, + "y": 3.07666015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3752, + "pitch": null, + "reason": null, + "target": { + "x": 1.814208984375, + "y": 3.054443359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3752, + "target": { + "x": 34.288330078125, + "y": 40.2259521484375, + "z": 4.0477294921875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3752, + "sequence": 270, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3752, + "pitch": null, + "reason": null, + "target": { + "x": 1.256103515625, + "y": 3.0567626953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3756, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3756, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.98095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3757, + "pitch": null, + "reason": null, + "target": { + "x": 1.1746826171875, + "y": 1.0325927734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3757, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 1.0494384765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3759, + "pitch": null, + "reason": null, + "target": { + "x": 1.83349609375, + "y": 3.080810546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3759, + "pitch": null, + "reason": null, + "target": { + "x": 1.1396484375, + "y": 2.8944091796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3760, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 124187, + "y": 168259, + "z": 49450 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3760, + "otherUnit": null, + "sequence": 328, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3761, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 125530, + "y": 166941, + "z": 49108 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3764, + "otherUnit": null, + "sequence": 329, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3767, + "target": { + "x": 19.947998046875, + "y": 46.3638916015625, + "z": 4.9974365234375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3767, + "sequence": 271, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 3769, + "pitch": null, + "reason": null, + "target": { + "x": 1.8526611328125, + "y": 3.1068115234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3769, + "target": { + "x": 15.0545654296875, + "y": 20.53369140625, + "z": 6.0301513671875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3769, + "sequence": 330, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3771, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3772, + "pitch": null, + "reason": null, + "target": { + "x": 1.1431884765625, + "y": 1.068603515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3772, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3778, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3778, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3780, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 1.0018310546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3782, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3783, + "pitch": null, + "reason": null, + "target": { + "x": 1.6302490234375, + "y": 0.9346923828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3786, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3790, + "pitch": null, + "reason": null, + "target": { + "x": 0.9312744140625, + "y": 1.4215087890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 56623105 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3790, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3791, + "pitch": null, + "reason": null, + "target": { + "x": 1.1258544921875, + "y": 1.11328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3791, + "pitch": null, + "reason": null, + "target": { + "x": 1.1044921875, + "y": 1.1597900390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 145034, + "y": 106889, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3791, + "otherUnit": null, + "sequence": 331, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3793, + "pitch": null, + "reason": null, + "target": { + "x": 1.082275390625, + "y": 1.2041015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3794, + "pitch": null, + "reason": null, + "target": { + "x": 1.0565185546875, + "y": 1.262939453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3794, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.9263916015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3794, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.874267578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3797, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3797, + "pitch": null, + "reason": null, + "target": { + "x": 1.041259765625, + "y": 1.297119140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3797, + "target": { + "x": 14.79638671875, + "y": 12.249755859375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3797, + "sequence": 332, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3798, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3800, + "target": { + "x": 12.901611328125, + "y": 25.9444580078125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3800, + "sequence": 272, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3802, + "pitch": null, + "reason": null, + "target": { + "x": 1.2894287109375, + "y": 3.03515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3802, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3804, + "pitch": null, + "reason": null, + "target": { + "x": 1.326171875, + "y": 3.03515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3804, + "pitch": null, + "reason": null, + "target": { + "x": 1.611572265625, + "y": 0.8109130859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3805, + "pitch": null, + "reason": null, + "target": { + "x": 1.3934326171875, + "y": 3.03515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3806, + "pitch": null, + "reason": null, + "target": { + "x": 1.429443359375, + "y": 3.03515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3806, + "pitch": null, + "reason": null, + "target": { + "x": 1.5634765625, + "y": 0.811767578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3806, + "pitch": null, + "reason": null, + "target": { + "x": 1.508056640625, + "y": 0.81396484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 66846721 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3806, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3808, + "pitch": null, + "reason": null, + "target": { + "x": 1.4710693359375, + "y": 3.03515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3809, + "pitch": null, + "reason": null, + "target": { + "x": 1.5382080078125, + "y": 3.072021484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3809, + "pitch": null, + "reason": null, + "target": { + "x": 1.3775634765625, + "y": 0.8253173828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3811, + "pitch": null, + "reason": null, + "target": { + "x": 1.5726318359375, + "y": 3.1063232421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3811, + "pitch": null, + "reason": null, + "target": { + "x": 1.3370361328125, + "y": 0.8297119140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3811, + "pitch": null, + "reason": null, + "target": { + "x": 1.280029296875, + "y": 0.841064453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3812, + "pitch": null, + "reason": null, + "target": { + "x": 1.5789794921875, + "y": 3.1463623046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3812, + "target": { + "x": 12.67529296875, + "y": 13.0089111328125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3812, + "sequence": 335, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3812, + "pitch": null, + "reason": null, + "target": { + "x": 1.29443359375, + "y": 3.0450439453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3813, + "pitch": null, + "reason": null, + "target": { + "x": 1.1998291015625, + "y": 0.8642578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3813, + "pitch": null, + "reason": null, + "target": { + "x": 1.32568359375, + "y": 3.046630859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3815, + "pitch": null, + "reason": null, + "target": { + "x": 1.156982421875, + "y": 0.88232421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3815, + "sequence": 336, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3816, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3816, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3816, + "pitch": null, + "reason": null, + "target": { + "x": 1.3629150390625, + "y": 3.053955078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3817, + "pitch": null, + "reason": null, + "target": { + "x": 1.1195068359375, + "y": 0.9100341796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3817, + "pitch": null, + "reason": null, + "target": { + "x": 1.39990234375, + "y": 3.06591796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3819, + "pitch": null, + "reason": null, + "target": { + "x": 1.0977783203125, + "y": 0.9324951171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3819, + "sequence": 337, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3819, + "pitch": null, + "reason": null, + "target": { + "x": 1.439697265625, + "y": 3.081787109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 66846721 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3820, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3821, + "sequence": 338, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3821, + "pitch": null, + "reason": null, + "target": { + "x": 1.4818115234375, + "y": 3.1005859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3823, + "pitch": null, + "reason": null, + "target": { + "x": 1.5223388671875, + "y": 3.1195068359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3824, + "pitch": null, + "reason": null, + "target": { + "x": 1.5789794921875, + "y": 3.1976318359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 3824, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 9.75, + "y": 51.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 60030978, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3824, + "sequence": 273, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3826, + "pitch": null, + "reason": null, + "target": { + "x": 1.5789794921875, + "y": 3.231201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3826, + "pitch": null, + "reason": null, + "target": { + "x": 1.5616455078125, + "y": 3.1380615234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3827, + "pitch": null, + "reason": null, + "target": { + "x": 1.046875, + "y": 1.251220703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3828, + "pitch": null, + "reason": null, + "target": { + "x": 1.060302734375, + "y": 0.9228515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3828, + "pitch": null, + "reason": null, + "target": { + "x": 1.06640625, + "y": 1.1966552734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3828, + "pitch": null, + "reason": null, + "target": { + "x": 1.589599609375, + "y": 3.1563720703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3831, + "pitch": null, + "reason": null, + "target": { + "x": 1.02734375, + "y": 0.922119140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3831, + "pitch": null, + "reason": null, + "target": { + "x": 1.0811767578125, + "y": 1.1519775390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3831, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3832, + "pitch": null, + "reason": null, + "target": { + "x": 1.1077880859375, + "y": 1.101806640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 61865991, + 68157441 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3832, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3834, + "pitch": null, + "reason": null, + "target": { + "x": 0.995849609375, + "y": 0.9228515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3834, + "pitch": null, + "reason": null, + "target": { + "x": 1.1297607421875, + "y": 1.068603515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3834, + "otherUnit": null, + "sequence": 274, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 11, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 104448, + "y": 108544, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3834, + "otherUnit": null, + "sequence": 339, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3834, + "pitch": null, + "reason": null, + "target": { + "x": 1.5963134765625, + "y": 3.1871337890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 61865991 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3835, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3837, + "pitch": null, + "reason": null, + "target": { + "x": 1.1507568359375, + "y": 1.0379638671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 79872, + "y": 423936, + "z": 49104 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 60030978, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3837, + "otherUnit": null, + "sequence": 275, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3838, + "pitch": null, + "reason": null, + "target": { + "x": 1.614990234375, + "y": 3.2607421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3838, + "pitch": null, + "reason": null, + "target": { + "x": 1.6494140625, + "y": 3.2607421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3838, + "pitch": null, + "reason": null, + "target": { + "x": 1.1741943359375, + "y": 1.0025634765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3838, + "pitch": null, + "reason": null, + "target": { + "x": 1.5841064453125, + "y": 3.2197265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3839, + "pitch": null, + "reason": null, + "target": { + "x": 1.6854248046875, + "y": 3.2296142578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3841, + "pitch": null, + "reason": null, + "target": { + "x": 1.6910400390625, + "y": 3.1943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3841, + "pitch": null, + "reason": null, + "target": { + "x": 0.9627685546875, + "y": 0.9176025390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3841, + "pitch": null, + "reason": null, + "target": { + "x": 1.2059326171875, + "y": 0.95849609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3841, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3842, + "pitch": null, + "reason": null, + "target": { + "x": 1.2283935546875, + "y": 0.9239501953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3843, + "pitch": null, + "reason": null, + "target": { + "x": 1.2467041015625, + "y": 2.8397216796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3843, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3846, + "pitch": null, + "reason": null, + "target": { + "x": 0.935791015625, + "y": 0.93408203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3846, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3846, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3847, + "pitch": null, + "reason": null, + "target": { + "x": 1.6854248046875, + "y": 3.1632080078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3847, + "pitch": null, + "reason": null, + "target": { + "x": 0.9276123046875, + "y": 0.985107421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3847, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3847, + "pitch": null, + "reason": null, + "target": { + "x": 1.619140625, + "y": 3.229736328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3849, + "pitch": null, + "reason": null, + "target": { + "x": 1.6494140625, + "y": 3.1744384765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3849, + "target": { + "x": 23.7286376953125, + "y": 45.944091796875, + "z": 4.99658203125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3849, + "sequence": 276, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3850, + "pitch": null, + "reason": null, + "target": { + "x": 1.586181640625, + "y": 3.237548828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3850, + "pitch": null, + "reason": null, + "target": { + "x": 0.9365234375, + "y": 1.0211181640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3850, + "pitch": null, + "reason": null, + "target": { + "x": 0.9462890625, + "y": 1.0526123046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3852, + "pitch": null, + "reason": null, + "target": { + "x": 0.963623046875, + "y": 1.1051025390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3852, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3852, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3852, + "pitch": null, + "reason": null, + "target": { + "x": 1.6480712890625, + "y": 3.213623046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3853, + "pitch": null, + "reason": null, + "target": { + "x": 1.4046630859375, + "y": 2.8587646484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3854, + "pitch": null, + "reason": null, + "target": { + "x": 0.98388671875, + "y": 1.227294921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3854, + "pitch": null, + "reason": null, + "target": { + "x": 1.502685546875, + "y": 2.99462890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 68157441, + 68943875 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3854, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3856, + "pitch": null, + "reason": null, + "target": { + "x": 0.9884033203125, + "y": 1.2618408203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3856, + "pitch": null, + "reason": null, + "target": { + "x": 1.502685546875, + "y": 3.0640869140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3856, + "otherUnit": null, + "sequence": 277, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3857, + "pitch": null, + "reason": null, + "target": { + "x": 1.0018310546875, + "y": 1.308349609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 68157441 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3857, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3858, + "pitch": null, + "reason": null, + "target": { + "x": 1.0108642578125, + "y": 1.3541259765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3858, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3860, + "pitch": null, + "reason": null, + "target": { + "x": 1.013916015625, + "y": 1.3878173828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3860, + "pitch": null, + "reason": null, + "target": { + "x": 1.6163330078125, + "y": 3.2230224609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3861, + "pitch": null, + "reason": null, + "target": { + "x": 1.0146484375, + "y": 1.4417724609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3861, + "pitch": null, + "reason": null, + "target": { + "x": 1.2083740234375, + "y": 0.8955078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 219 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3863, + "otherUnit": null, + "sequence": 340, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3864, + "pitch": null, + "reason": null, + "target": { + "x": 1.1612548828125, + "y": 0.87109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3864, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 233203, + "y": 398002, + "z": 39133 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3865, + "otherUnit": null, + "sequence": 278, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3865, + "pitch": null, + "reason": null, + "target": { + "x": 1.5870361328125, + "y": 3.237060546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3867, + "pitch": null, + "reason": null, + "target": { + "x": 1.10693359375, + "y": 0.841796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3867, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3868, + "pitch": null, + "reason": null, + "target": { + "x": 1.0628662109375, + "y": 0.817138671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3871, + "pitch": null, + "reason": null, + "target": { + "x": 1.0205078125, + "y": 0.80029296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3872, + "pitch": null, + "reason": null, + "target": { + "x": 0.9854736328125, + "y": 0.789794921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3873, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 133120, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3873, + "otherUnit": null, + "sequence": 341, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3875, + "pitch": null, + "reason": null, + "target": { + "x": 1.5595703125, + "y": 3.0640869140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3876, + "pitch": null, + "reason": null, + "target": { + "x": 0.9521484375, + "y": 0.7808837890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3876, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3876, + "pitch": null, + "reason": null, + "target": { + "x": 1.7049560546875, + "y": 3.0640869140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3878, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3878, + "pitch": null, + "reason": null, + "target": { + "x": 1.771240234375, + "y": 3.0640869140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3879, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3879, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3880, + "pitch": null, + "reason": null, + "target": { + "x": 0.9002685546875, + "y": 0.7784423828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3880, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3882, + "pitch": null, + "reason": null, + "target": { + "x": 0.7232666015625, + "y": 3.32177734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3882, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3883, + "pitch": null, + "reason": null, + "target": { + "x": 0.7232666015625, + "y": 3.32177734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3884, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3886, + "pitch": null, + "reason": null, + "target": { + "x": 0.86328125, + "y": 0.776611328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3886, + "target": { + "x": 30.2596435546875, + "y": 48.6165771484375, + "z": 4.3369140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3886, + "sequence": 279, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3888, + "pitch": null, + "reason": null, + "target": { + "x": 0.9869384765625, + "y": 1.487548828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3888, + "target": { + "x": 29.897705078125, + "y": 48.40869140625, + "z": 4.37548828125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3888, + "sequence": 280, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3890, + "pitch": null, + "reason": null, + "target": { + "x": 0.8375244140625, + "y": 0.7967529296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3891, + "pitch": null, + "reason": null, + "target": { + "x": 0.962890625, + "y": 1.5145263671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3891, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3893, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3894, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3894, + "pitch": null, + "reason": null, + "target": { + "x": 0.9149169921875, + "y": 1.5557861328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3894, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3895, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3895, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3897, + "target": { + "x": 30.6195068359375, + "y": 49.877685546875, + "z": 4.562255859375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3897, + "sequence": 281, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3899, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3901, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3901, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3901, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.9971923828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3904, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3904, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 65798145 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3904, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3905, + "target": { + "x": 29.2347412109375, + "y": 47.8287353515625, + "z": 4.396240234375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3905, + "sequence": 282, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3908, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3909, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3909, + "pitch": null, + "reason": null, + "target": { + "x": 0.827392578125, + "y": 0.8319091796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3909, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3909, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.92529296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3910, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.874267578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3912, + "otherUnit": null, + "sequence": 283, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3912, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.8209228515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3912, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3913, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.7257080078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3914, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.6746826171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3916, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 266714, + "y": 400439, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3917, + "otherUnit": null, + "sequence": 284, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3923, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3925, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3927, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3927, + "pitch": null, + "reason": null, + "target": { + "x": 1.5313720703125, + "y": 2.8580322265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3928, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 24, + "abilLink": 152 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3930, + "otherUnit": null, + "sequence": 344, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3931, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3932, + "pitch": null, + "reason": null, + "target": { + "x": 1.8743896484375, + "y": 2.646728515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3932, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3936, + "target": { + "x": 26.3271484375, + "y": 49.1158447265625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3936, + "sequence": 285, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3938, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3939, + "target": { + "x": 26.9456787109375, + "y": 49.4200439453125, + "z": 4.994140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3939, + "sequence": 286, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 153473, + "y": 108123, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3940, + "otherUnit": null, + "sequence": 345, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3942, + "target": { + "x": 27.2984619140625, + "y": 49.4676513671875, + "z": 4.9942626953125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3942, + "sequence": 287, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3945, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3945, + "target": { + "x": 18.98681640625, + "y": 12.8651123046875, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3945, + "sequence": 346, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3946, + "pitch": null, + "reason": null, + "target": { + "x": 1.6356201171875, + "y": 2.8580322265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3946, + "pitch": null, + "reason": null, + "target": { + "x": 1.7841796875, + "y": 2.8580322265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3947, + "pitch": null, + "reason": null, + "target": { + "x": 1.8818359375, + "y": 2.6842041015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3949, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.708740234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3949, + "target": { + "x": 35.64111328125, + "y": 49.42626953125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3949, + "sequence": 288, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3950, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3950, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.708740234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3951, + "pitch": null, + "reason": null, + "target": { + "x": 1.8773193359375, + "y": 2.7374267578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3951, + "otherUnit": null, + "sequence": 347, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3953, + "pitch": null, + "reason": null, + "target": { + "x": 0.81103515625, + "y": 1.6407470703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3954, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3956, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3957, + "pitch": null, + "reason": null, + "target": { + "x": 1.8758544921875, + "y": 2.772705078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3957, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3957, + "pitch": null, + "reason": null, + "target": { + "x": 1.96728515625, + "y": 2.653564453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3958, + "pitch": null, + "reason": null, + "target": { + "x": 0.85205078125, + "y": 1.6407470703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3960, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3960, + "pitch": null, + "reason": null, + "target": { + "x": 0.978515625, + "y": 1.5142822265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3961, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3961, + "pitch": null, + "reason": null, + "target": { + "x": 1.03857421875, + "y": 1.435302734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3964, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3964, + "target": { + "x": 15.513916015625, + "y": 20.6640625, + "z": 6.0477294921875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3964, + "sequence": 289, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3964, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3966, + "pitch": null, + "reason": null, + "target": { + "x": 1.8751220703125, + "y": 2.813232421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3968, + "pitch": null, + "reason": null, + "target": { + "x": 1.03857421875, + "y": 1.334228515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3968, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3971, + "pitch": null, + "reason": null, + "target": { + "x": 1.8834228515625, + "y": 2.8507080078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 3972, + "target": { + "x": 14.522216796875, + "y": 23.4976806640625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3972, + "sequence": 290, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3972, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3973, + "userid": { + "userId": 0 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3975, + "otherUnit": null, + "sequence": 291, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3976, + "pitch": null, + "reason": null, + "target": { + "x": 0.7266845703125, + "y": 0.708740234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3977, + "pitch": null, + "reason": null, + "target": { + "x": 0.763427734375, + "y": 0.708740234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3979, + "pitch": null, + "reason": null, + "target": { + "x": 0.7969970703125, + "y": 0.708740234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3979, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3980, + "pitch": null, + "reason": null, + "target": { + "x": 0.8594970703125, + "y": 0.74951171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 82 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 133120, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3980, + "otherUnit": null, + "sequence": 348, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3982, + "pitch": null, + "reason": null, + "target": { + "x": 0.9002685546875, + "y": 0.790283203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3982, + "pitch": null, + "reason": null, + "target": { + "x": 0.8656005859375, + "y": 1.6195068359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3983, + "pitch": null, + "reason": null, + "target": { + "x": 0.9698486328125, + "y": 0.85986328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3983, + "pitch": null, + "reason": null, + "target": { + "x": 1.88037109375, + "y": 2.985595703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3983, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3984, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3984, + "pitch": null, + "reason": null, + "target": { + "x": 0.7208251953125, + "y": 0.712890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3986, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3986, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3987, + "pitch": null, + "reason": null, + "target": { + "x": 0.7640380859375, + "y": 0.7322998046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 440929, + "y": 399457, + "z": 36701 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3988, + "otherUnit": null, + "sequence": 292, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3990, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3990, + "pitch": null, + "reason": null, + "target": { + "x": 0.8013916015625, + "y": 0.7537841796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3991, + "sequence": 293, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 3991, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3991, + "pitch": null, + "reason": null, + "target": { + "x": 0.843505859375, + "y": 0.7794189453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3994, + "userid": { + "userId": 0 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 3994, + "otherUnit": null, + "sequence": 349, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3994, + "pitch": null, + "reason": null, + "target": { + "x": 0.888916015625, + "y": 0.80810546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3995, + "pitch": null, + "reason": null, + "target": { + "x": 0.9317626953125, + "y": 0.83544921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3997, + "sequence": 294, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 3997, + "sequence": 350, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 3998, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 3998, + "pitch": null, + "reason": null, + "target": { + "x": 0.9627685546875, + "y": 0.8553466796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4001, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4001, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4005, + "pitch": null, + "reason": null, + "target": { + "x": 0.99462890625, + "y": 0.9046630859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4006, + "pitch": null, + "reason": null, + "target": { + "x": 0.99462890625, + "y": 0.9422607421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4006, + "target": { + "x": 50.068603515625, + "y": 49.079345703125, + "z": 4.994140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4006, + "sequence": 295, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4008, + "pitch": null, + "reason": null, + "target": { + "x": 0.99462890625, + "y": 0.9766845703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 56, + "unitLink": 252 + } + ], + "addUnitTags": [ + 63963137 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4008, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4009, + "pitch": null, + "reason": null, + "target": { + "x": 0.99462890625, + "y": 1.0174560546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 88064, + "y": 104448, + "z": 49104 + }, + "snapshotUnitLink": 154, + "snapshotUpkeepPlayerId": 2, + "tag": 54263809, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4009, + "otherUnit": null, + "sequence": 351, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4010, + "pitch": null, + "reason": null, + "target": { + "x": 1.88037109375, + "y": 2.8465576171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4012, + "pitch": null, + "reason": null, + "target": { + "x": 1.88037109375, + "y": 2.745361328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4013, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4013, + "pitch": null, + "reason": null, + "target": { + "x": 0.976318359375, + "y": 0.8839111328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4016, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4016, + "pitch": null, + "reason": null, + "target": { + "x": 0.9814453125, + "y": 0.91650390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 65798145 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4017, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4017, + "pitch": null, + "reason": null, + "target": { + "x": 1.88037109375, + "y": 2.70751953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4017, + "pitch": null, + "reason": null, + "target": { + "x": 1.88037109375, + "y": 2.5684814453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4018, + "pitch": null, + "reason": null, + "target": { + "x": 0.986328125, + "y": 0.9530029296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4020, + "pitch": null, + "reason": null, + "target": { + "x": 1.9276123046875, + "y": 2.8341064453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4021, + "pitch": null, + "reason": null, + "target": { + "x": 0.99462890625, + "y": 0.96630859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4021, + "pitch": null, + "reason": null, + "target": { + "x": 1.963623046875, + "y": 2.8116455078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4021, + "pitch": null, + "reason": null, + "target": { + "x": 0.991455078125, + "y": 0.9931640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4023, + "pitch": null, + "reason": null, + "target": { + "x": 0.99462890625, + "y": 0.9239501953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4023, + "pitch": null, + "reason": null, + "target": { + "x": 1.9920654296875, + "y": 2.796630859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4023, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4024, + "pitch": null, + "reason": null, + "target": { + "x": 0.96337890625, + "y": 0.8551025390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4024, + "pitch": null, + "reason": null, + "target": { + "x": 1.88037109375, + "y": 2.5020751953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4024, + "otherUnit": null, + "sequence": 352, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4025, + "pitch": null, + "reason": null, + "target": { + "x": 0.92578125, + "y": 0.8175048828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4025, + "pitch": null, + "reason": null, + "target": { + "x": 1.88037109375, + "y": 2.369384765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4027, + "pitch": null, + "reason": null, + "target": { + "x": 0.8953857421875, + "y": 0.787109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4027, + "pitch": null, + "reason": null, + "target": { + "x": 1.88037109375, + "y": 2.2745361328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 226229, + "y": 164424, + "z": 39534 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4027, + "otherUnit": null, + "sequence": 353, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4028, + "pitch": null, + "reason": null, + "target": { + "x": 0.8426513671875, + "y": 0.719970703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4031, + "pitch": null, + "reason": null, + "target": { + "x": 1.88037109375, + "y": 2.148193359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4031, + "pitch": null, + "reason": null, + "target": { + "x": 0.9755859375, + "y": 0.9627685546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4032, + "pitch": null, + "reason": null, + "target": { + "x": 1.88037109375, + "y": 2.0565185546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4033, + "pitch": null, + "reason": null, + "target": { + "x": 0.95654296875, + "y": 0.925048828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4035, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4035, + "pitch": null, + "reason": null, + "target": { + "x": 1.98828125, + "y": 2.7281494140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4035, + "pitch": null, + "reason": null, + "target": { + "x": 0.9339599609375, + "y": 0.883056640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4038, + "pitch": null, + "reason": null, + "target": { + "x": 0.9075927734375, + "y": 0.8353271484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4039, + "pitch": null, + "reason": null, + "target": { + "x": 2.0035400390625, + "y": 2.1639404296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4039, + "pitch": null, + "reason": null, + "target": { + "x": 2.142578125, + "y": 2.302978515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4039, + "pitch": null, + "reason": null, + "target": { + "x": 0.878662109375, + "y": 0.7838134765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4040, + "pitch": null, + "reason": null, + "target": { + "x": 2.2247314453125, + "y": 2.4547119140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4042, + "pitch": null, + "reason": null, + "target": { + "x": 0.7930908203125, + "y": 0.7135009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4042, + "pitch": null, + "reason": null, + "target": { + "x": 2.2247314453125, + "y": 2.58740234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 6, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 223232, + "y": 149504, + "z": 40906 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4042, + "otherUnit": null, + "sequence": 355, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4042, + "pitch": null, + "reason": null, + "target": { + "x": 0.853515625, + "y": 0.7393798828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4043, + "pitch": null, + "reason": null, + "target": { + "x": 0.757080078125, + "y": 0.7135009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4047, + "pitch": null, + "reason": null, + "target": { + "x": 0.8299560546875, + "y": 0.71533203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4050, + "pitch": null, + "reason": null, + "target": { + "x": 2.313232421875, + "y": 2.6063232421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4050, + "pitch": null, + "reason": null, + "target": { + "x": 2.4522705078125, + "y": 2.745361328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4051, + "pitch": null, + "reason": null, + "target": { + "x": 2.4522705078125, + "y": 2.7958984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4053, + "pitch": null, + "reason": null, + "target": { + "x": 0.795166015625, + "y": 0.7132568359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4054, + "pitch": null, + "reason": null, + "target": { + "x": 2.02880859375, + "y": 2.817626953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 70, + "unitLink": 71 + } + ], + "addUnitTags": [ + 62390275 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4054, + "userid": { + "userId": 2 + } + }, + { + "abil": null, + "cmdFlags": 266, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 133120, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4054, + "otherUnit": null, + "sequence": 356, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4057, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4057, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4057, + "pitch": null, + "reason": null, + "target": { + "x": 0.763671875, + "y": 0.71337890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4059, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4061, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4061, + "pitch": null, + "reason": null, + "target": { + "x": 2.0611572265625, + "y": 2.82666015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4061, + "pitch": null, + "reason": null, + "target": { + "x": 1.96728515625, + "y": 2.653564453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4062, + "pitch": null, + "reason": null, + "target": { + "x": 2.0963134765625, + "y": 2.82958984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4065, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 52690945, + 53477377, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4065, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4065, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4066, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4068, + "pitch": null, + "reason": null, + "target": { + "x": 2.1278076171875, + "y": 2.8311767578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51642369, + 51904513, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4069, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4069, + "pitch": null, + "reason": null, + "target": { + "x": 0.951416015625, + "y": 1.1702880859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4070, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 52690945, + 53477377, + 57671682, + 58195969, + 58982401, + 61603842 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4075, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4075, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4075, + "pitch": null, + "reason": null, + "target": { + "x": 0.951416015625, + "y": 1.1123046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4076, + "pitch": null, + "reason": null, + "target": { + "x": 0.8167724609375, + "y": 1.570556640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4076, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4076, + "pitch": null, + "reason": null, + "target": { + "x": 0.951416015625, + "y": 1.01025390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4077, + "pitch": null, + "reason": null, + "target": { + "x": 0.951416015625, + "y": 0.956787109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4079, + "pitch": null, + "reason": null, + "target": { + "x": 0.951416015625, + "y": 0.901123046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4079, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4080, + "pitch": null, + "reason": null, + "target": { + "x": 0.951416015625, + "y": 0.8026123046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 70, + "unitLink": 71 + } + ], + "addUnitTags": [ + 62390275 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4081, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4081, + "pitch": null, + "reason": null, + "target": { + "x": 0.951416015625, + "y": 0.7491455078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 68157441 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4083, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 154972, + "y": 87970, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4084, + "otherUnit": null, + "sequence": 357, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 61865991 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4087, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4087, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4088, + "pitch": null, + "reason": null, + "target": { + "x": 1.4273681640625, + "y": 1.02783203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4088, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4088, + "otherUnit": null, + "sequence": 358, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4090, + "pitch": null, + "reason": null, + "target": { + "x": 0.9942626953125, + "y": 0.7213134765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4090, + "pitch": null, + "reason": null, + "target": { + "x": 1.4273681640625, + "y": 1.02783203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4091, + "pitch": null, + "reason": null, + "target": { + "x": 1.466552734375, + "y": 1.0079345703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4091, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4091, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4091, + "pitch": null, + "reason": null, + "target": { + "x": 1.0545654296875, + "y": 0.7213134765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4094, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 160914, + "y": 85872, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4095, + "otherUnit": null, + "sequence": 359, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4096, + "pitch": null, + "reason": null, + "target": { + "x": 0.812255859375, + "y": 1.52587890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4096, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4098, + "pitch": null, + "reason": null, + "target": { + "x": 0.8099365234375, + "y": 1.4847412109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4098, + "pitch": null, + "reason": null, + "target": { + "x": 1.7974853515625, + "y": 2.9326171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4099, + "pitch": null, + "reason": null, + "target": { + "x": 0.8033447265625, + "y": 1.38134765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4101, + "pitch": null, + "reason": null, + "target": { + "x": 1.52734375, + "y": 1.0079345703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4101, + "pitch": null, + "reason": null, + "target": { + "x": 0.7994384765625, + "y": 1.3179931640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4101, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4101, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4101, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4102, + "pitch": null, + "reason": null, + "target": { + "x": 1.5977783203125, + "y": 1.0079345703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4102, + "pitch": null, + "reason": null, + "target": { + "x": 0.7957763671875, + "y": 1.1868896484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4102, + "pitch": null, + "reason": null, + "target": { + "x": 1.455322265625, + "y": 1.0135498046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4103, + "pitch": null, + "reason": null, + "target": { + "x": 1.6337890625, + "y": 1.0079345703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4103, + "pitch": null, + "reason": null, + "target": { + "x": 0.7955322265625, + "y": 1.1119384765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4105, + "pitch": null, + "reason": null, + "target": { + "x": 1.663330078125, + "y": 0.978271484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4105, + "pitch": null, + "reason": null, + "target": { + "x": 0.7955322265625, + "y": 1.0570068359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4105, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4106, + "pitch": null, + "reason": null, + "target": { + "x": 1.663330078125, + "y": 0.9111328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4106, + "pitch": null, + "reason": null, + "target": { + "x": 0.79736328125, + "y": 0.95556640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4107, + "pitch": null, + "reason": null, + "target": { + "x": 0.7994384765625, + "y": 0.9180908203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4107, + "pitch": null, + "reason": null, + "target": { + "x": 1.491943359375, + "y": 1.0076904296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4109, + "pitch": null, + "reason": null, + "target": { + "x": 1.58154296875, + "y": 0.9998779296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4110, + "pitch": null, + "reason": null, + "target": { + "x": 0.8006591796875, + "y": 0.88623046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4110, + "pitch": null, + "reason": null, + "target": { + "x": 1.5294189453125, + "y": 0.9959716796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 68157441 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4113, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4113, + "pitch": null, + "reason": null, + "target": { + "x": 1.56884765625, + "y": 0.97412109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 12, + "unitLink": 45 + } + ], + "addUnitTags": [ + 63963138 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4114, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4116, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4116, + "pitch": null, + "reason": null, + "target": { + "x": 1.5968017578125, + "y": 0.9561767578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4117, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4117, + "pitch": null, + "reason": null, + "target": { + "x": 1.626220703125, + "y": 0.9364013671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4120, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4120, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4120, + "pitch": null, + "reason": null, + "target": { + "x": 1.6524658203125, + "y": 0.91845703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 121778, + "y": 147861, + "z": 49121 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4121, + "otherUnit": null, + "sequence": 360, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4124, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 68681729 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4127, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4128, + "pitch": null, + "reason": null, + "target": { + "x": 0.991455078125, + "y": 0.9912109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4129, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4131, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4131, + "pitch": null, + "reason": null, + "target": { + "x": 1.55224609375, + "y": 1.01123046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4132, + "pitch": null, + "reason": null, + "target": { + "x": 1.96728515625, + "y": 2.653564453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 68943875, + 70778881 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4133, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4135, + "pitch": null, + "reason": null, + "target": { + "x": 1.502685546875, + "y": 0.9984130859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4135, + "pitch": null, + "reason": null, + "target": { + "x": 0.848876953125, + "y": 0.900390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4136, + "pitch": null, + "reason": null, + "target": { + "x": 1.4420166015625, + "y": 0.9947509765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4136, + "pitch": null, + "reason": null, + "target": { + "x": 0.89453125, + "y": 0.9154052734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4137, + "pitch": null, + "reason": null, + "target": { + "x": 1.3804931640625, + "y": 0.9931640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4137, + "pitch": null, + "reason": null, + "target": { + "x": 0.9365234375, + "y": 0.929443359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4139, + "pitch": null, + "reason": null, + "target": { + "x": 1.343017578125, + "y": 0.992431640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4139, + "target": { + "x": 32.53662109375, + "y": 46.82861328125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4139, + "sequence": 361, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4140, + "pitch": null, + "reason": null, + "target": { + "x": 1.2777099609375, + "y": 0.9864501953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4143, + "target": { + "x": 33.245849609375, + "y": 49.33642578125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4143, + "sequence": 362, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4143, + "pitch": null, + "reason": null, + "target": { + "x": 1.96728515625, + "y": 2.7022705078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4143, + "pitch": null, + "reason": null, + "target": { + "x": 1.96728515625, + "y": 2.755615234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4144, + "otherUnit": null, + "sequence": 296, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4144, + "pitch": null, + "reason": null, + "target": { + "x": 1.96728515625, + "y": 2.8125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4146, + "pitch": null, + "reason": null, + "target": { + "x": 1.64404296875, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 68943875 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4146, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4146, + "pitch": null, + "reason": null, + "target": { + "x": 1.96728515625, + "y": 2.863525390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4146, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4147, + "pitch": null, + "reason": null, + "target": { + "x": 1.9127197265625, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4148, + "pitch": null, + "reason": null, + "target": { + "x": 2.042236328125, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4148, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4150, + "pitch": null, + "reason": null, + "target": { + "x": 2.095947265625, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4151, + "target": { + "x": 33.22900390625, + "y": 49.68359375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4151, + "sequence": 363, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4153, + "pitch": null, + "reason": null, + "target": { + "x": 2.095947265625, + "y": 3.123046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4154, + "sequence": 364, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4155, + "pitch": null, + "reason": null, + "target": { + "x": 1.466552734375, + "y": 0.50927734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4155, + "pitch": null, + "reason": null, + "target": { + "x": 1.2335205078125, + "y": 0.971435546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4155, + "pitch": null, + "reason": null, + "target": { + "x": 2.095947265625, + "y": 3.0787353515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4157, + "pitch": null, + "reason": null, + "target": { + "x": 1.4273681640625, + "y": 0.5491943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4157, + "pitch": null, + "reason": null, + "target": { + "x": 1.1944580078125, + "y": 0.9632568359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4157, + "target": { + "x": 33.7642822265625, + "y": 49.0693359375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4157, + "sequence": 365, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4157, + "pitch": null, + "reason": null, + "target": { + "x": 1.466552734375, + "y": 0.50927734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 311676, + "y": 401563, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4158, + "otherUnit": null, + "sequence": 297, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4161, + "target": { + "x": 31.410400390625, + "y": 48.4942626953125, + "z": 4.0186767578125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4161, + "sequence": 366, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4162, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4165, + "pitch": null, + "reason": null, + "target": { + "x": 2.8670654296875, + "y": 2.910400390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 235603, + "y": 393270, + "z": 37336 + }, + "snapshotUnitLink": 148, + "snapshotUpkeepPlayerId": 1, + "tag": 68419585, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4165, + "otherUnit": null, + "sequence": 367, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4168, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4168, + "pitch": null, + "reason": null, + "target": { + "x": 1.4423828125, + "y": 0.5338134765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 590 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 242588, + "y": 390896, + "z": 35010 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4170, + "otherUnit": null, + "sequence": 368, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 66846722, + 68157442, + 70778881 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4172, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 63700993 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4173, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4174, + "pitch": null, + "reason": null, + "target": { + "x": 1.2244873046875, + "y": 0.9310302734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4174, + "otherUnit": null, + "sequence": 298, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4176, + "pitch": null, + "reason": null, + "target": { + "x": 1.373779296875, + "y": 0.5859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 66846722 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4176, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 270339, + "y": 362338, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4176, + "otherUnit": null, + "sequence": 369, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4177, + "pitch": null, + "reason": null, + "target": { + "x": 1.309814453125, + "y": 0.64990234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4177, + "sequence": 299, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4178, + "pitch": null, + "reason": null, + "target": { + "x": 1.2713623046875, + "y": 0.6883544921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 68157442 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4178, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4180, + "pitch": null, + "reason": null, + "target": { + "x": 1.2386474609375, + "y": 0.72119140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4180, + "target": { + "x": 32.7139892578125, + "y": 44.0645751953125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4180, + "sequence": 370, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4180, + "pitch": null, + "reason": null, + "target": { + "x": 1.4193115234375, + "y": 0.5555419921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4181, + "pitch": null, + "reason": null, + "target": { + "x": 1.173828125, + "y": 0.785888671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4181, + "pitch": null, + "reason": null, + "target": { + "x": 1.2574462890625, + "y": 0.9249267578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4181, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4183, + "pitch": null, + "reason": null, + "target": { + "x": 1.13623046875, + "y": 0.823486328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4183, + "pitch": null, + "reason": null, + "target": { + "x": 1.2896728515625, + "y": 0.9219970703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4183, + "target": { + "x": 32.4073486328125, + "y": 44.3140869140625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4183, + "sequence": 371, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4184, + "pitch": null, + "reason": null, + "target": { + "x": 1.1121826171875, + "y": 0.872314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4184, + "pitch": null, + "reason": null, + "target": { + "x": 1.3316650390625, + "y": 0.9219970703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4184, + "pitch": null, + "reason": null, + "target": { + "x": 1.9136962890625, + "y": 3.0498046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4184, + "pitch": null, + "reason": null, + "target": { + "x": 1.9136962890625, + "y": 2.992919921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4184, + "pitch": null, + "reason": null, + "target": { + "x": 1.3939208984375, + "y": 0.5782470703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4185, + "pitch": null, + "reason": null, + "target": { + "x": 1.3895263671875, + "y": 0.9384765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4185, + "pitch": null, + "reason": null, + "target": { + "x": 1.9136962890625, + "y": 2.8980712890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4185, + "pitch": null, + "reason": null, + "target": { + "x": 1.3642578125, + "y": 0.605712890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4187, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4188, + "pitch": null, + "reason": null, + "target": { + "x": 1.4322509765625, + "y": 0.948974609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 237204, + "y": 392229, + "z": 36676 + }, + "snapshotUnitLink": 148, + "snapshotUpkeepPlayerId": 1, + "tag": 68419585, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4188, + "otherUnit": null, + "sequence": 372, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4188, + "pitch": null, + "reason": null, + "target": { + "x": 1.3309326171875, + "y": 0.63818359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4189, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4189, + "pitch": null, + "reason": null, + "target": { + "x": 1.4869384765625, + "y": 0.96240234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4189, + "pitch": null, + "reason": null, + "target": { + "x": 1.293212890625, + "y": 0.677001953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4191, + "pitch": null, + "reason": null, + "target": { + "x": 1.257080078125, + "y": 0.71533203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4192, + "pitch": null, + "reason": null, + "target": { + "x": 1.2332763671875, + "y": 0.7408447265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4194, + "userid": { + "userId": 0 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 228589, + "y": 399852, + "z": 40749 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4194, + "otherUnit": null, + "sequence": 300, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4195, + "pitch": null, + "reason": null, + "target": { + "x": 1.193603515625, + "y": 0.78369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4196, + "target": { + "x": 27.4271240234375, + "y": 49.0621337890625, + "z": 4.997314453125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4196, + "sequence": 301, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4196, + "pitch": null, + "reason": null, + "target": { + "x": 1.169677734375, + "y": 0.8096923828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4196, + "pitch": null, + "reason": null, + "target": { + "x": 1.14794921875, + "y": 0.833251953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4198, + "userid": { + "userId": 0 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 265663, + "y": 361246, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4198, + "otherUnit": null, + "sequence": 373, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4199, + "pitch": null, + "reason": null, + "target": { + "x": 1.1199951171875, + "y": 0.86376953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4200, + "pitch": null, + "reason": null, + "target": { + "x": 1.05224609375, + "y": 0.872314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4200, + "target": { + "x": 32.66748046875, + "y": 43.65869140625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4200, + "sequence": 374, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4202, + "pitch": null, + "reason": null, + "target": { + "x": 1.0146484375, + "y": 0.872314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4203, + "pitch": null, + "reason": null, + "target": { + "x": 0.9522705078125, + "y": 0.872314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4203, + "pitch": null, + "reason": null, + "target": { + "x": 1.96728515625, + "y": 2.8310546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4204, + "pitch": null, + "reason": null, + "target": { + "x": 0.9154052734375, + "y": 0.872314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4206, + "pitch": null, + "reason": null, + "target": { + "x": 0.878662109375, + "y": 0.8515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4206, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4206, + "target": { + "x": 30.75830078125, + "y": 49.6373291015625, + "z": 4.467529296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4206, + "sequence": 302, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4207, + "pitch": null, + "reason": null, + "target": { + "x": 0.8201904296875, + "y": 0.7930908203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4207, + "pitch": null, + "reason": null, + "target": { + "x": 1.083740234375, + "y": 0.8729248046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4209, + "pitch": null, + "reason": null, + "target": { + "x": 0.7841796875, + "y": 0.750732421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4210, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4210, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4210, + "pitch": null, + "reason": null, + "target": { + "x": 1.043212890625, + "y": 0.8685302734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4213, + "pitch": null, + "reason": null, + "target": { + "x": 1.171630859375, + "y": 0.6717529296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4213, + "pitch": null, + "reason": null, + "target": { + "x": 1.0074462890625, + "y": 0.85791015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4214, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4214, + "pitch": null, + "reason": null, + "target": { + "x": 0.9705810546875, + "y": 0.843017578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4217, + "pitch": null, + "reason": null, + "target": { + "x": 0.9725341796875, + "y": 0.93994140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4217, + "otherUnit": null, + "sequence": 303, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4217, + "pitch": null, + "reason": null, + "target": { + "x": 0.928466796875, + "y": 0.82373046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 56623105 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4218, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4218, + "pitch": null, + "reason": null, + "target": { + "x": 1.0213623046875, + "y": 0.9481201171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4218, + "pitch": null, + "reason": null, + "target": { + "x": 1.171630859375, + "y": 0.6253662109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4218, + "pitch": null, + "reason": null, + "target": { + "x": 0.88623046875, + "y": 0.8028564453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4220, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4221, + "pitch": null, + "reason": null, + "target": { + "x": 1.923095703125, + "y": 2.8912353515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4221, + "pitch": null, + "reason": null, + "target": { + "x": 1.0618896484375, + "y": 0.9493408203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4221, + "pitch": null, + "reason": null, + "target": { + "x": 0.841064453125, + "y": 0.7799072265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4222, + "pitch": null, + "reason": null, + "target": { + "x": 1.10595703125, + "y": 0.951416015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4222, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4222, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4222, + "pitch": null, + "reason": null, + "target": { + "x": 0.8018798828125, + "y": 0.759765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4224, + "pitch": null, + "reason": null, + "target": { + "x": 1.1446533203125, + "y": 0.956787109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4224, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4225, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 70778881, + 71565316, + 71827458, + 72089601, + 72613889 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4225, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4225, + "otherUnit": null, + "sequence": 304, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4226, + "pitch": null, + "reason": null, + "target": { + "x": 1.1851806640625, + "y": 0.966064453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 70778881 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4226, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4226, + "target": { + "x": 21.4398193359375, + "y": 11.5716552734375, + "z": 5.6951904296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4226, + "sequence": 375, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4229, + "pitch": null, + "reason": null, + "target": { + "x": 1.231689453125, + "y": 0.97900390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4229, + "pitch": null, + "reason": null, + "target": { + "x": 1.262939453125, + "y": 0.9888916015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4229, + "sequence": 305, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 71565316 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4230, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 174901, + "y": 95962, + "z": 49542 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4230, + "otherUnit": null, + "sequence": 376, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4232, + "pitch": null, + "reason": null, + "target": { + "x": 1.318115234375, + "y": 1.0059814453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4233, + "pitch": null, + "reason": null, + "target": { + "x": 1.3592529296875, + "y": 1.01953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4233, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 240282, + "y": 405416, + "z": 39217 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4233, + "otherUnit": null, + "sequence": 306, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4233, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4236, + "pitch": null, + "reason": null, + "target": { + "x": 1.9486083984375, + "y": 2.8544921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4236, + "pitch": null, + "reason": null, + "target": { + "x": 1.3973388671875, + "y": 1.03271484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 65536001 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4237, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4237, + "pitch": null, + "reason": null, + "target": { + "x": 1.4300537109375, + "y": 1.044677734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4237, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4237, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4239, + "pitch": null, + "reason": null, + "target": { + "x": 1.97412109375, + "y": 2.824462890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4240, + "pitch": null, + "reason": null, + "target": { + "x": 1.4617919921875, + "y": 1.0576171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4240, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4243, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4243, + "pitch": null, + "reason": null, + "target": { + "x": 1.5010986328125, + "y": 1.07470703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4243, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 65792, + "data": { + "TargetPoint": { + "x": 602455, + "y": 181004, + "z": 39808 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4244, + "otherUnit": null, + "sequence": 307, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4244, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 41 + } + ], + "addUnitTags": [ + 58458114 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4247, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4247, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4247, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4248, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4248, + "pitch": null, + "reason": null, + "target": { + "x": 1.171630859375, + "y": 0.6798095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4250, + "pitch": null, + "reason": null, + "target": { + "x": 1.171630859375, + "y": 0.7261962890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4251, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4251, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4251, + "pitch": null, + "reason": null, + "target": { + "x": 1.171630859375, + "y": 0.831787109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4252, + "userid": { + "userId": 0 + } + }, + { + "distance": 9550, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4252, + "pitch": null, + "reason": null, + "target": { + "x": 1.4420166015625, + "y": 1.0648193359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 71827458, + 72089601, + 72613889 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4252, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4252, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4252, + "pitch": null, + "reason": null, + "target": { + "x": 1.171630859375, + "y": 0.8770751953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": 9351, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4254, + "pitch": null, + "reason": null, + "target": { + "x": 1.399658203125, + "y": 1.0545654296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4254, + "pitch": null, + "reason": null, + "target": { + "x": 1.171630859375, + "y": 0.9315185546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4254, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": 9090, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4255, + "pitch": null, + "reason": null, + "target": { + "x": 1.3526611328125, + "y": 1.0440673828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4255, + "otherUnit": null, + "sequence": 308, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4255, + "pitch": null, + "reason": null, + "target": { + "x": 1.171630859375, + "y": 0.9779052734375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4255, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 71827458 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4256, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4258, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4259, + "pitch": null, + "reason": null, + "target": { + "x": 1.311767578125, + "y": 1.0401611328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4259, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4261, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 123123, + "y": 158817, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4262, + "otherUnit": null, + "sequence": 377, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4265, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4266, + "pitch": null, + "reason": null, + "target": { + "x": 3.15966796875, + "y": 3.1358642578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4267, + "otherUnit": null, + "sequence": 310, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4267, + "pitch": null, + "reason": null, + "target": { + "x": 1.314697265625, + "y": 0.68310546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 21, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56885249, + 57147393, + 57409537, + 58720257, + 61079553, + 62128129, + 62652417, + 64487426, + 65273859, + 66060290, + 70254593, + 72351746 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4269, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4269, + "target": { + "x": 15.8018798828125, + "y": 14.34326171875, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4269, + "sequence": 378, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4272, + "target": { + "x": 15.564697265625, + "y": 14.3204345703125, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4272, + "sequence": 379, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4273, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4273, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4273, + "pitch": null, + "reason": null, + "target": { + "x": 1.4857177734375, + "y": 0.5570068359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 128185, + "y": 114866, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4276, + "otherUnit": null, + "sequence": 380, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4277, + "pitch": null, + "reason": null, + "target": { + "x": 3.138671875, + "y": 3.0960693359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4280, + "pitch": null, + "reason": null, + "target": { + "x": 3.118408203125, + "y": 3.0555419921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4280, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4281, + "pitch": null, + "reason": null, + "target": { + "x": 3.098876953125, + "y": 3.0015869140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4281, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4282, + "pitch": null, + "reason": null, + "target": { + "x": 3.086181640625, + "y": 2.9700927734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4284, + "pitch": null, + "reason": null, + "target": { + "x": 3.048583984375, + "y": 2.8973388671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4284, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4284, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4285, + "pitch": null, + "reason": null, + "target": { + "x": 3.016357421875, + "y": 2.8515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 21, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 54788097, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 57147393, + 57409537, + 58720257, + 59244545, + 61079553, + 62128129, + 62652417, + 64487426, + 65273859, + 66060290, + 70254593, + 72351746 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4287, + "userid": { + "userId": 0 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 196938, + "y": 57825, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4287, + "otherUnit": null, + "sequence": 311, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4287, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4288, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4288, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4291, + "pitch": null, + "reason": null, + "target": { + "x": 1.7752685546875, + "y": 2.996826171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4291, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 133120, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4291, + "otherUnit": null, + "sequence": 381, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4292, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4293, + "pitch": null, + "reason": null, + "target": { + "x": 1.5001220703125, + "y": 0.625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4293, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4293, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 72089601, + 72613889 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4298, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4298, + "pitch": null, + "reason": null, + "target": { + "x": 1.2152099609375, + "y": 0.7294921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4299, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4303, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4303, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4304, + "pitch": null, + "reason": null, + "target": { + "x": 2.99462890625, + "y": 2.8133544921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4306, + "pitch": null, + "reason": null, + "target": { + "x": 2.986328125, + "y": 2.779541015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4307, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4308, + "pitch": null, + "reason": null, + "target": { + "x": 2.9796142578125, + "y": 2.73681640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51642369, + 51904513, + 52690945, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4308, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4310, + "pitch": null, + "reason": null, + "target": { + "x": 2.974365234375, + "y": 2.693359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4310, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4311, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4314, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.122314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 53739521, + 58195969, + 60293121 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4314, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4314, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4315, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4315, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 22.5, + "y": 16.25, + "z": 4.99609375 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4315, + "sequence": 382, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4315, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.122314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4318, + "pitch": null, + "reason": null, + "target": { + "x": 1.7752685546875, + "y": 2.996826171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4318, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 22.5, + "y": 16.25, + "z": 4.99609375 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4318, + "sequence": 383, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4318, + "otherUnit": null, + "sequence": 384, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4321, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4323, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4325, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.1741943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4325, + "pitch": null, + "reason": null, + "target": { + "x": 1.7752685546875, + "y": 2.8450927734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 68681731, + 72089601, + 72613889, + 73138178, + 73662465 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4325, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4326, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.2381591796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 62914563, + 66322433, + 66584577, + 67371009, + 67633153 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4326, + "userid": { + "userId": 1 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4326, + "otherUnit": null, + "sequence": 312, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 68681731 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4328, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4328, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4329, + "sequence": 313, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 72089601 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4330, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4332, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4333, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4333, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.1622314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4336, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4336, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4337, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4337, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.1943359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4339, + "pitch": null, + "reason": null, + "target": { + "x": 1.98828125, + "y": 2.858642578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4339, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51118081, + 51380225, + 61865992, + 65011714, + 67895298, + 69468161 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4340, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4340, + "pitch": null, + "reason": null, + "target": { + "x": 3.02685546875, + "y": 2.6640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4340, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4340, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.2281494140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4341, + "pitch": null, + "reason": null, + "target": { + "x": 3.05908203125, + "y": 2.6580810546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4341, + "pitch": null, + "reason": null, + "target": { + "x": 3.10107421875, + "y": 2.6490478515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4341, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 191653, + "y": 396021, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4343, + "otherUnit": null, + "sequence": 314, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4344, + "pitch": null, + "reason": null, + "target": { + "x": 3.143798828125, + "y": 2.6400146484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4344, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4345, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4347, + "pitch": null, + "reason": null, + "target": { + "x": 3.19482421875, + "y": 2.6280517578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 65798145 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4347, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4348, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.17578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4349, + "pitch": null, + "reason": null, + "target": { + "x": 1.7301025390625, + "y": 3.140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4351, + "pitch": null, + "reason": null, + "target": { + "x": 1.77001953125, + "y": 3.1005859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4352, + "pitch": null, + "reason": null, + "target": { + "x": 1.833251953125, + "y": 3.0374755859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 70, + "unitLink": 71 + } + ], + "addUnitTags": [ + 62390275 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4355, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 125528, + "y": 166408, + "z": 49111 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4355, + "otherUnit": null, + "sequence": 385, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4356, + "pitch": null, + "reason": null, + "target": { + "x": 1.7205810546875, + "y": 3.1964111328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4358, + "pitch": null, + "reason": null, + "target": { + "x": 3.2301025390625, + "y": 2.6182861328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4358, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4359, + "pitch": null, + "reason": null, + "target": { + "x": 1.7392578125, + "y": 3.1685791015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 183835, + "y": 160397, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4360, + "otherUnit": null, + "sequence": 386, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4360, + "pitch": null, + "reason": null, + "target": { + "x": 1.760986328125, + "y": 3.1375732421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4362, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4362, + "pitch": null, + "reason": null, + "target": { + "x": 1.9512939453125, + "y": 2.89404296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 252 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 186368, + "y": 387072, + "z": 40931 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4362, + "otherUnit": null, + "sequence": 315, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4362, + "pitch": null, + "reason": null, + "target": { + "x": 1.7855224609375, + "y": 3.1033935546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4363, + "pitch": null, + "reason": null, + "target": { + "x": 1.8919677734375, + "y": 2.9453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4363, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4365, + "pitch": null, + "reason": null, + "target": { + "x": 1.8123779296875, + "y": 3.066162109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4366, + "pitch": null, + "reason": null, + "target": { + "x": 1.867919921875, + "y": 2.9825439453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4366, + "pitch": null, + "reason": null, + "target": { + "x": 0.97607421875, + "y": 0.8597412109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4367, + "pitch": null, + "reason": null, + "target": { + "x": 1.8502197265625, + "y": 3.01220703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4367, + "pitch": null, + "reason": null, + "target": { + "x": 1.8316650390625, + "y": 3.0394287109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4370, + "pitch": null, + "reason": null, + "target": { + "x": 1.825927734375, + "y": 3.046142578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4370, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4373, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4373, + "pitch": null, + "reason": null, + "target": { + "x": 1.80126953125, + "y": 3.0692138671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 244331, + "y": 409375, + "z": 39195 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4373, + "otherUnit": null, + "sequence": 316, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4374, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 252 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 243712, + "y": 407552, + "z": 38994 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4377, + "otherUnit": null, + "sequence": 317, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4377, + "pitch": null, + "reason": null, + "target": { + "x": 2.0416259765625, + "y": 2.6844482421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4378, + "pitch": null, + "reason": null, + "target": { + "x": 1.76611328125, + "y": 3.0374755859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4378, + "target": { + "x": 30.875244140625, + "y": 41.2144775390625, + "z": 4.0224609375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4378, + "sequence": 387, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4380, + "pitch": null, + "reason": null, + "target": { + "x": 1.7301025390625, + "y": 3.0374755859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4380, + "pitch": null, + "reason": null, + "target": { + "x": 3.278076171875, + "y": 2.601806640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4381, + "pitch": null, + "reason": null, + "target": { + "x": 1.656494140625, + "y": 3.0374755859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4381, + "pitch": null, + "reason": null, + "target": { + "x": 3.3260498046875, + "y": 2.5889892578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4381, + "pitch": null, + "reason": null, + "target": { + "x": 1.7686767578125, + "y": 3.084228515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4381, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4381, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4381, + "target": { + "x": 30.6280517578125, + "y": 40.91162109375, + "z": 4.0477294921875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4381, + "sequence": 388, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4382, + "pitch": null, + "reason": null, + "target": { + "x": 1.6204833984375, + "y": 3.0374755859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4382, + "pitch": null, + "reason": null, + "target": { + "x": 3.3560791015625, + "y": 2.5792236328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4382, + "pitch": null, + "reason": null, + "target": { + "x": 1.7188720703125, + "y": 3.076416015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4384, + "pitch": null, + "reason": null, + "target": { + "x": 1.5853271484375, + "y": 3.0078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4384, + "pitch": null, + "reason": null, + "target": { + "x": 3.3935546875, + "y": 2.5672607421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4385, + "pitch": null, + "reason": null, + "target": { + "x": 1.5196533203125, + "y": 2.955810546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4385, + "pitch": null, + "reason": null, + "target": { + "x": 1.680419921875, + "y": 3.0716552734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4385, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4386, + "pitch": null, + "reason": null, + "target": { + "x": 1.6260986328125, + "y": 3.0662841796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 73400322 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4386, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4386, + "pitch": null, + "reason": null, + "target": { + "x": 2.0416259765625, + "y": 2.60546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4386, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4386, + "pitch": null, + "reason": null, + "target": { + "x": 1.7904052734375, + "y": 3.037109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4388, + "pitch": null, + "reason": null, + "target": { + "x": 1.5943603515625, + "y": 3.0628662109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4388, + "pitch": null, + "reason": null, + "target": { + "x": 2.0416259765625, + "y": 2.5521240234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 88064, + "y": 452608, + "z": 49104 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 49807361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4389, + "otherUnit": null, + "sequence": 318, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4389, + "pitch": null, + "reason": null, + "target": { + "x": 2.0416259765625, + "y": 2.4593505859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4389, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4389, + "pitch": null, + "reason": null, + "target": { + "x": 1.7412109375, + "y": 3.0281982421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4391, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4391, + "pitch": null, + "reason": null, + "target": { + "x": 2.0416259765625, + "y": 2.40478515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4392, + "pitch": null, + "reason": null, + "target": { + "x": 2.0416259765625, + "y": 2.3016357421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4392, + "pitch": null, + "reason": null, + "target": { + "x": 1.6976318359375, + "y": 3.0157470703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4393, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4393, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4393, + "pitch": null, + "reason": null, + "target": { + "x": 2.0416259765625, + "y": 2.2540283203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4393, + "pitch": null, + "reason": null, + "target": { + "x": 1.6546630859375, + "y": 3.001953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4396, + "target": { + "x": 28.3603515625, + "y": 34.7830810546875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4396, + "sequence": 389, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4396, + "pitch": null, + "reason": null, + "target": { + "x": 1.6063232421875, + "y": 2.9857177734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4397, + "pitch": null, + "reason": null, + "target": { + "x": 1.58447265625, + "y": 2.955810546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4397, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4397, + "pitch": null, + "reason": null, + "target": { + "x": 1.559814453125, + "y": 2.9697265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4399, + "pitch": null, + "reason": null, + "target": { + "x": 1.6204833984375, + "y": 2.955810546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4399, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4400, + "pitch": null, + "reason": null, + "target": { + "x": 1.808837890625, + "y": 3.0435791015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4400, + "otherUnit": null, + "sequence": 390, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4400, + "pitch": null, + "reason": null, + "target": { + "x": 1.5252685546875, + "y": 2.9573974609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4403, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4403, + "pitch": null, + "reason": null, + "target": { + "x": 1.8814697265625, + "y": 2.970947265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4403, + "sequence": 391, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4404, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4404, + "pitch": null, + "reason": null, + "target": { + "x": 2.0047607421875, + "y": 2.904541015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4406, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4406, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4407, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 228027, + "y": 279285, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4407, + "otherUnit": null, + "sequence": 392, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4408, + "pitch": null, + "reason": null, + "target": { + "x": 1.5611572265625, + "y": 2.950439453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4410, + "pitch": null, + "reason": null, + "target": { + "x": 3.4302978515625, + "y": 2.55224609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4411, + "pitch": null, + "reason": null, + "target": { + "x": 3.476806640625, + "y": 2.5343017578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4411, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4411, + "pitch": null, + "reason": null, + "target": { + "x": 1.598388671875, + "y": 2.9537353515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4412, + "pitch": null, + "reason": null, + "target": { + "x": 3.51806640625, + "y": 2.520751953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4414, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 254693, + "y": 396521, + "z": 33391 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4414, + "otherUnit": null, + "sequence": 319, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4414, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4415, + "pitch": null, + "reason": null, + "target": { + "x": 3.599853515625, + "y": 2.4945068359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4417, + "pitch": null, + "reason": null, + "target": { + "x": 3.6328125, + "y": 2.4862060546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4417, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4417, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4418, + "pitch": null, + "reason": null, + "target": { + "x": 3.67333984375, + "y": 2.47802734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 72613889, + 73138178, + 73662465 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4419, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4419, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4421, + "otherUnit": null, + "sequence": 320, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4421, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4422, + "pitch": null, + "reason": null, + "target": { + "x": 1.6363525390625, + "y": 3.0562744140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 72613889 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4422, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 6, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4422, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4423, + "pitch": null, + "reason": null, + "target": { + "x": 1.6962890625, + "y": 3.0521240234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4423, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4425, + "pitch": null, + "reason": null, + "target": { + "x": 1.7359619140625, + "y": 3.0521240234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4425, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4425, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 22.5, + "y": 16.25, + "z": 4.99609375 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4425, + "sequence": 393, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4426, + "pitch": null, + "reason": null, + "target": { + "x": 0.801513671875, + "y": 3.2818603515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 247622, + "y": 395616, + "z": 34932 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4426, + "otherUnit": null, + "sequence": 321, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4427, + "pitch": null, + "reason": null, + "target": { + "x": 0.801513671875, + "y": 3.2818603515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4429, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4429, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4430, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4432, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4433, + "pitch": null, + "reason": null, + "target": { + "x": 3.574462890625, + "y": 2.48193359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4434, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4436, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4438, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 65792, + "data": { + "TargetPoint": { + "x": 612711, + "y": 102985, + "z": 40945 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4438, + "otherUnit": null, + "sequence": 322, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4438, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4440, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4440, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4441, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4443, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4444, + "pitch": null, + "reason": null, + "target": { + "x": 0.801513671875, + "y": 3.3402099609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4444, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4445, + "pitch": null, + "reason": null, + "target": { + "x": 0.801513671875, + "y": 3.37939453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4445, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4447, + "pitch": null, + "reason": null, + "target": { + "x": 0.801513671875, + "y": 3.4146728515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 74711041 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4448, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 210944, + "y": 423936, + "z": 40912 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 60555265, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4451, + "otherUnit": null, + "sequence": 323, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4452, + "pitch": null, + "reason": null, + "target": { + "x": 0.801513671875, + "y": 3.3184814453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4453, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4456, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54788097 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4456, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4456, + "pitch": null, + "reason": null, + "target": { + "x": 0.801513671875, + "y": 3.3604736328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4458, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4458, + "target": { + "x": 23.006103515625, + "y": 16.021240234375, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4458, + "sequence": 394, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4459, + "pitch": null, + "reason": null, + "target": { + "x": 0.801513671875, + "y": 3.3658447265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4459, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4459, + "pitch": null, + "reason": null, + "target": { + "x": 0.801513671875, + "y": 3.3941650390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4460, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4463, + "pitch": null, + "reason": null, + "target": { + "x": 3.8267822265625, + "y": 2.5 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4463, + "pitch": null, + "reason": null, + "target": { + "x": 1.593505859375, + "y": 2.944091796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4464, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 22.5, + "y": 16.25, + "z": 4.99609375 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4464, + "sequence": 395, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4467, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4467, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4468, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 82 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 124928, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 9961473, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4470, + "otherUnit": null, + "sequence": 396, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4471, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4473, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4473, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4477, + "pitch": null, + "reason": null, + "target": { + "x": 3.868408203125, + "y": 2.468994140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4477, + "otherUnit": null, + "sequence": 397, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4478, + "pitch": null, + "reason": null, + "target": { + "x": 3.890869140625, + "y": 2.4459228515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 233266, + "y": 397709, + "z": 39044 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4479, + "otherUnit": null, + "sequence": 324, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 72876035, + 73924610 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4479, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4481, + "pitch": null, + "reason": null, + "target": { + "x": 3.9251708984375, + "y": 2.41748046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 206991, + "y": 157280, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4481, + "otherUnit": null, + "sequence": 398, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4482, + "pitch": null, + "reason": null, + "target": { + "x": 3.9569091796875, + "y": 2.396728515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4485, + "pitch": null, + "reason": null, + "target": { + "x": 3.9844970703125, + "y": 2.3748779296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4485, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 27.25, + "y": 18.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 45, + "snapshotUpkeepPlayerId": 2, + "tag": 63963138, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4485, + "sequence": 399, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4486, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4486, + "target": { + "x": 28.0225830078125, + "y": 47.54248046875, + "z": 4.627685546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4486, + "sequence": 325, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4488, + "pitch": null, + "reason": null, + "target": { + "x": 4.0196533203125, + "y": 2.3499755859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4488, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4489, + "pitch": null, + "reason": null, + "target": { + "x": 3.7137451171875, + "y": 2.471923828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4490, + "pitch": null, + "reason": null, + "target": { + "x": 3.7520751953125, + "y": 2.4630126953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4492, + "pitch": null, + "reason": null, + "target": { + "x": 1.6817626953125, + "y": 0.9281005859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4492, + "pitch": null, + "reason": null, + "target": { + "x": 3.7978515625, + "y": 2.4471435546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4492, + "pitch": null, + "reason": null, + "target": { + "x": 4.0460205078125, + "y": 2.33251953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4492, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4493, + "pitch": null, + "reason": null, + "target": { + "x": 3.8787841796875, + "y": 2.408203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4493, + "target": { + "x": 29.9736328125, + "y": 48.788818359375, + "z": 4.4515380859375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4493, + "sequence": 326, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4493, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.0179443359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4493, + "pitch": null, + "reason": null, + "target": { + "x": 1.6817626953125, + "y": 0.9281005859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4494, + "pitch": null, + "reason": null, + "target": { + "x": 3.947021484375, + "y": 2.3714599609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4494, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4494, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.069091796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4496, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4497, + "pitch": null, + "reason": null, + "target": { + "x": 4.0474853515625, + "y": 2.324951171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 116 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4497, + "otherUnit": null, + "sequence": 400, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4499, + "target": { + "x": 30.432861328125, + "y": 48.73779296875, + "z": 4.323974609375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4499, + "sequence": 327, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4500, + "pitch": null, + "reason": null, + "target": { + "x": 4.07421875, + "y": 2.314208984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4501, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4503, + "otherUnit": null, + "sequence": 328, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4504, + "userid": { + "userId": 0 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4504, + "otherUnit": null, + "sequence": 401, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4507, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 72876035, + 73924610 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4507, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4508, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 223232, + "y": 149504, + "z": 40912 + }, + "snapshotUnitLink": 45, + "snapshotUpkeepPlayerId": 2, + "tag": 63963138, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4510, + "otherUnit": null, + "sequence": 402, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 12, + "unitLink": 45 + } + ], + "addUnitTags": [ + 63963138 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4511, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4511, + "pitch": null, + "reason": null, + "target": { + "x": 4.099365234375, + "y": 2.29052734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51642369, + 51904513, + 52166657, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4511, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4511, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4512, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 27.25, + "y": 18.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 45, + "snapshotUpkeepPlayerId": 2, + "tag": 63963138, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4512, + "sequence": 403, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4516, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4516, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4516, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4516, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4518, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4519, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4520, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4520, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4522, + "pitch": null, + "reason": null, + "target": { + "x": 4.122802734375, + "y": 2.266845703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4522, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4525, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4526, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4526, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4529, + "pitch": null, + "reason": null, + "target": { + "x": 4.142578125, + "y": 2.240478515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 72876035, + 73924610, + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4530, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4530, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 178 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4531, + "otherUnit": null, + "sequence": 329, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4534, + "pitch": null, + "reason": null, + "target": { + "x": 4.1444091796875, + "y": 2.2008056640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4534, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4536, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4537, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4537, + "pitch": null, + "reason": null, + "target": { + "x": 4.0648193359375, + "y": 2.285888671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4537, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4538, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4538, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7841796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4538, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4540, + "pitch": null, + "reason": null, + "target": { + "x": 4.1446533203125, + "y": 2.1693115234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4540, + "pitch": null, + "reason": null, + "target": { + "x": 1.81787109375, + "y": 2.9443359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4540, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8433837890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4541, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8792724609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4542, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54788097 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4544, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4546, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4548, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4548, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.9361572265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4549, + "target": { + "x": 13.783203125, + "y": 24.0501708984375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4549, + "sequence": 404, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4549, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.9976806640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4552, + "pitch": null, + "reason": null, + "target": { + "x": 4.16064453125, + "y": 2.1390380859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4552, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4555, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 106496, + "y": 163840, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4556, + "otherUnit": null, + "sequence": 405, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 108336, + "y": 163924, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4562, + "otherUnit": null, + "sequence": 406, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4566, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 0.688720703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 70778882 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4567, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 110592, + "y": 163840, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4567, + "otherUnit": null, + "sequence": 407, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4567, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 0.688720703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4571, + "pitch": null, + "reason": null, + "target": { + "x": 1.6466064453125, + "y": 1.0325927734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4571, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 223232, + "y": 452608, + "z": 40912 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 33030145, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4572, + "otherUnit": null, + "sequence": 330, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4579, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + }, + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 71827459, + 65011714, + 67895298, + 69468161, + 75759617 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4579, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 266, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 133120, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4579, + "otherUnit": null, + "sequence": 408, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4581, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4583, + "pitch": null, + "reason": null, + "target": { + "x": 1.5850830078125, + "y": 1.01904296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4583, + "pitch": null, + "reason": null, + "target": { + "x": 1.540771484375, + "y": 1.01904296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4583, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4586, + "pitch": null, + "reason": null, + "target": { + "x": 1.4462890625, + "y": 1.02587890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4586, + "pitch": null, + "reason": null, + "target": { + "x": 1.402099609375, + "y": 1.0318603515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4588, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4589, + "pitch": null, + "reason": null, + "target": { + "x": 1.3697509765625, + "y": 1.037841796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4590, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4592, + "pitch": null, + "reason": null, + "target": { + "x": 1.3345947265625, + "y": 1.037841796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4592, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4593, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4593, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4594, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4594, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 223232, + "y": 149504, + "z": 40912 + }, + "snapshotUnitLink": 45, + "snapshotUpkeepPlayerId": 2, + "tag": 63963138, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4596, + "otherUnit": null, + "sequence": 409, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4600, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4601, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4603, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4603, + "pitch": null, + "reason": null, + "target": { + "x": 1.2933349609375, + "y": 1.046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4604, + "pitch": null, + "reason": null, + "target": { + "x": 1.245361328125, + "y": 1.0640869140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 18, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 73400322, + 50855937, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705, + 63438849, + 71041025 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4604, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4605, + "pitch": null, + "reason": null, + "target": { + "x": 1.13134765625, + "y": 1.10986328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4605, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4605, + "pitch": null, + "reason": null, + "target": { + "x": 1.5455322265625, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4607, + "pitch": null, + "reason": null, + "target": { + "x": 1.0638427734375, + "y": 1.139892578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4607, + "pitch": null, + "reason": null, + "target": { + "x": 1.490966796875, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4607, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4608, + "pitch": null, + "reason": null, + "target": { + "x": 1.0352783203125, + "y": 1.1556396484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 18 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4608, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4608, + "pitch": null, + "reason": null, + "target": { + "x": 1.388916015625, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4609, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4609, + "pitch": null, + "reason": null, + "target": { + "x": 1.3402099609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4611, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4611, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4612, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4613, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4613, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4615, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 0.7447509765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4618, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 68943876 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4620, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 71565317, + 73138178, + 73662465, + 74973185 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4623, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4623, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4624, + "otherUnit": null, + "sequence": 331, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 71565317 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4626, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x05" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4626, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4626, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 0.72314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4629, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 141 + }, + "cmdFlags": 16777472, + "data": { + "TargetPoint": { + "x": 141312, + "y": 124928, + "z": 49120 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4629, + "otherUnit": null, + "sequence": 411, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4630, + "pitch": null, + "reason": null, + "target": { + "x": 0.99560546875, + "y": 1.1248779296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4631, + "pitch": null, + "reason": null, + "target": { + "x": 0.9520263671875, + "y": 1.068603515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 68943876 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4631, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4633, + "pitch": null, + "reason": null, + "target": { + "x": 0.90625, + "y": 0.980224609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4633, + "pitch": null, + "reason": null, + "target": { + "x": 0.884521484375, + "y": 0.9066162109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4633, + "pitch": null, + "reason": null, + "target": { + "x": 1.81787109375, + "y": 2.9443359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4635, + "pitch": null, + "reason": null, + "target": { + "x": 0.874755859375, + "y": 0.836181640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4635, + "pitch": null, + "reason": null, + "target": { + "x": 0.871826171875, + "y": 0.80322265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4635, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4637, + "pitch": null, + "reason": null, + "target": { + "x": 0.8271484375, + "y": 0.751220703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4638, + "pitch": null, + "reason": null, + "target": { + "x": 0.8951416015625, + "y": 0.8192138671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 208773, + "y": 157792, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4638, + "otherUnit": null, + "sequence": 412, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4639, + "pitch": null, + "reason": null, + "target": { + "x": 0.9351806640625, + "y": 0.859130859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 73138178, + 73662465, + 74973185 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4639, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4641, + "pitch": null, + "reason": null, + "target": { + "x": 0.9671630859375, + "y": 0.89111328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4641, + "pitch": null, + "reason": null, + "target": { + "x": 0.831298828125, + "y": 0.8009033203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4642, + "pitch": null, + "reason": null, + "target": { + "x": 1.0335693359375, + "y": 0.95751953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4642, + "pitch": null, + "reason": null, + "target": { + "x": 0.7781982421875, + "y": 0.7525634765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4644, + "pitch": null, + "reason": null, + "target": { + "x": 0.778076171875, + "y": 0.806884765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 266, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 210944, + "y": 133120, + "z": 40912 + }, + "snapshotUnitLink": 154, + "snapshotUpkeepPlayerId": 2, + "tag": 61341698, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4644, + "otherUnit": null, + "sequence": 413, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4645, + "pitch": null, + "reason": null, + "target": { + "x": 0.8143310546875, + "y": 0.7779541015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 376 + }, + "cmdFlags": 258, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4646, + "otherUnit": null, + "sequence": 414, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4648, + "pitch": null, + "reason": null, + "target": { + "x": 0.8487548828125, + "y": 0.804931640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4649, + "pitch": null, + "reason": null, + "target": { + "x": 0.88916015625, + "y": 0.8377685546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4650, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4652, + "pitch": null, + "reason": null, + "target": { + "x": 0.9296875, + "y": 0.87109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4653, + "pitch": null, + "reason": null, + "target": { + "x": 0.69580078125, + "y": 3.4210205078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4653, + "pitch": null, + "reason": null, + "target": { + "x": 1.7396240234375, + "y": 2.08642578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4653, + "pitch": null, + "reason": null, + "target": { + "x": 0.9754638671875, + "y": 0.9091796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4656, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4656, + "pitch": null, + "reason": null, + "target": { + "x": 1.0166015625, + "y": 0.9434814453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4657, + "pitch": null, + "reason": null, + "target": { + "x": 1.0711669921875, + "y": 0.980712890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4659, + "pitch": null, + "reason": null, + "target": { + "x": 1.1094970703125, + "y": 0.980712890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4659, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4660, + "pitch": null, + "reason": null, + "target": { + "x": 1.1719970703125, + "y": 0.980712890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4660, + "userid": { + "userId": 1 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 223931, + "y": 260313, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4660, + "otherUnit": null, + "sequence": 415, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4661, + "pitch": null, + "reason": null, + "target": { + "x": 4.43212890625, + "y": 1.516845703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 60030978 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4663, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4663, + "pitch": null, + "reason": null, + "target": { + "x": 1.04248046875, + "y": 0.961669921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4664, + "target": { + "x": 27.0673828125, + "y": 31.61767578125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4664, + "sequence": 416, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4667, + "userid": { + "userId": 1 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 65792, + "data": { + "TargetPoint": { + "x": 553741, + "y": 92582, + "z": 49103 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4667, + "otherUnit": null, + "sequence": 337, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4667, + "pitch": null, + "reason": null, + "target": { + "x": 1.07666015625, + "y": 0.968017578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4668, + "otherUnit": null, + "sequence": 417, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4670, + "target": { + "x": 66.030517578125, + "y": 11.301513671875, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4670, + "sequence": 338, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4670, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4670, + "pitch": null, + "reason": null, + "target": { + "x": 1.1116943359375, + "y": 0.972900390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4671, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4671, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4672, + "pitch": null, + "reason": null, + "target": { + "x": 1.6463623046875, + "y": 1.093994140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4672, + "pitch": null, + "reason": null, + "target": { + "x": 1.14990234375, + "y": 0.977783203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4674, + "target": { + "x": 65.091552734375, + "y": 11.301513671875, + "z": 5.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4674, + "sequence": 339, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4675, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4676, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4678, + "pitch": null, + "reason": null, + "target": { + "x": 0.8365478515625, + "y": 0.83544921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4678, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4679, + "pitch": null, + "reason": null, + "target": { + "x": 0.89501953125, + "y": 0.8497314453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4679, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4681, + "pitch": null, + "reason": null, + "target": { + "x": 0.9393310546875, + "y": 0.85791015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4681, + "pitch": null, + "reason": null, + "target": { + "x": 0.9910888671875, + "y": 0.87060546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 73138178, + 73662465, + 74973185 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4682, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4682, + "otherUnit": null, + "sequence": 340, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4682, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4683, + "pitch": null, + "reason": null, + "target": { + "x": 1.10205078125, + "y": 0.9036865234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 73138178 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4683, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4683, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4685, + "pitch": null, + "reason": null, + "target": { + "x": 1.185302734375, + "y": 0.9246826171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4685, + "pitch": null, + "reason": null, + "target": { + "x": 1.760498046875, + "y": 3.298828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4686, + "pitch": null, + "reason": null, + "target": { + "x": 1.2423095703125, + "y": 0.93359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 57933825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4686, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4687, + "pitch": null, + "reason": null, + "target": { + "x": 1.364501953125, + "y": 0.9576416015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4687, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4687, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4689, + "pitch": null, + "reason": null, + "target": { + "x": 1.4486083984375, + "y": 0.973388671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4690, + "pitch": null, + "reason": null, + "target": { + "x": 1.5565185546875, + "y": 1.0145263671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 191801, + "y": 133178, + "z": 40928 + }, + "snapshotUnitLink": 252, + "snapshotUpkeepPlayerId": 2, + "tag": 70516737, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4690, + "otherUnit": null, + "sequence": 418, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 65792, + "data": { + "TargetPoint": { + "x": 558869, + "y": 100384, + "z": 49103 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4691, + "otherUnit": null, + "sequence": 341, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 65798145 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4693, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4693, + "pitch": null, + "reason": null, + "target": { + "x": 1.591064453125, + "y": 1.037841796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4694, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4694, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 22.5, + "y": 16.25, + "z": 4.99609375 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4694, + "sequence": 419, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4696, + "pitch": null, + "reason": null, + "target": { + "x": 1.6187744140625, + "y": 1.058837890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4697, + "pitch": null, + "reason": null, + "target": { + "x": 1.81787109375, + "y": 2.9443359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4697, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54788097 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4700, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4700, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4701, + "pitch": null, + "reason": null, + "target": { + "x": 1.211181640625, + "y": 0.980712890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4701, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4702, + "pitch": null, + "reason": null, + "target": { + "x": 1.24951171875, + "y": 0.980712890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4704, + "pitch": null, + "reason": null, + "target": { + "x": 1.2879638671875, + "y": 0.980712890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 76546049 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4704, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4704, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4705, + "pitch": null, + "reason": null, + "target": { + "x": 1.3575439453125, + "y": 0.980712890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 73662465, + 74973185, + 77070337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4705, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4705, + "otherUnit": null, + "sequence": 420, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4707, + "pitch": null, + "reason": null, + "target": { + "x": 1.3951416015625, + "y": 0.980712890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4707, + "pitch": null, + "reason": null, + "target": { + "x": 1.1812744140625, + "y": 0.9805908203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4708, + "userid": { + "userId": 1 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4708, + "sequence": 421, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4711, + "otherUnit": null, + "sequence": 343, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4711, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4711, + "pitch": null, + "reason": null, + "target": { + "x": 1.2193603515625, + "y": 0.9805908203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 0, + "unitLink": 475 + } + ], + "addUnitTags": [ + 68943876, + 41680897 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4712, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 73662465 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4712, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4713, + "pitch": null, + "reason": null, + "target": { + "x": 1.264892578125, + "y": 0.9805908203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 12, + "unitLink": 45 + } + ], + "addUnitTags": [ + 63963138 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4715, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4716, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4716, + "pitch": null, + "reason": null, + "target": { + "x": 1.314208984375, + "y": 0.9805908203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4717, + "pitch": null, + "reason": null, + "target": { + "x": 1.134033203125, + "y": 1.306640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 153 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4717, + "otherUnit": null, + "sequence": 422, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4719, + "pitch": null, + "reason": null, + "target": { + "x": 1.0753173828125, + "y": 1.286865234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4719, + "pitch": null, + "reason": null, + "target": { + "x": 1.3470458984375, + "y": 0.9805908203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4720, + "pitch": null, + "reason": null, + "target": { + "x": 1.380859375, + "y": 0.9805908203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4723, + "pitch": null, + "reason": null, + "target": { + "x": 1.455078125, + "y": 0.980712890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4723, + "pitch": null, + "reason": null, + "target": { + "x": 1.4935302734375, + "y": 0.980712890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4723, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 56623105 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4723, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4724, + "pitch": null, + "reason": null, + "target": { + "x": 1.531982421875, + "y": 0.980712890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4724, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4726, + "pitch": null, + "reason": null, + "target": { + "x": 1.5631103515625, + "y": 0.9879150390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 191955, + "y": 127359, + "z": 40928 + }, + "snapshotUnitLink": 252, + "snapshotUpkeepPlayerId": 2, + "tag": 68157443, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4726, + "otherUnit": null, + "sequence": 423, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4727, + "pitch": null, + "reason": null, + "target": { + "x": 1.6103515625, + "y": 1.05517578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4727, + "pitch": null, + "reason": null, + "target": { + "x": 1.0753173828125, + "y": 1.3184814453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4728, + "pitch": null, + "reason": null, + "target": { + "x": 1.412841796875, + "y": 0.980712890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4730, + "pitch": null, + "reason": null, + "target": { + "x": 1.0753173828125, + "y": 1.3658447265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4730, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4731, + "pitch": null, + "reason": null, + "target": { + "x": 1.4482421875, + "y": 0.9886474609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 131807, + "y": 180914, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4733, + "otherUnit": null, + "sequence": 348, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4733, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 22.5, + "y": 16.25, + "z": 4.99609375 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4733, + "sequence": 424, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4734, + "pitch": null, + "reason": null, + "target": { + "x": 1.4927978515625, + "y": 1.0052490234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4735, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 22.5, + "y": 16.25, + "z": 4.99609375 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4735, + "sequence": 425, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4737, + "pitch": null, + "reason": null, + "target": { + "x": 1.0753173828125, + "y": 1.2962646484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4737, + "pitch": null, + "reason": null, + "target": { + "x": 1.5281982421875, + "y": 1.0198974609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4738, + "pitch": null, + "reason": null, + "target": { + "x": 1.0753173828125, + "y": 1.0498046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4738, + "pitch": null, + "reason": null, + "target": { + "x": 1.563720703125, + "y": 1.0350341796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4739, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4741, + "pitch": null, + "reason": null, + "target": { + "x": 1.6790771484375, + "y": 1.0325927734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4741, + "target": { + "x": 16.5279541015625, + "y": 15.8262939453125, + "z": 5.9970703125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4741, + "sequence": 349, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4741, + "pitch": null, + "reason": null, + "target": { + "x": 1.595458984375, + "y": 1.0487060546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4742, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 27.25, + "y": 18.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 45, + "snapshotUpkeepPlayerId": 2, + "tag": 63963138, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4742, + "sequence": 426, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4743, + "pitch": null, + "reason": null, + "target": { + "x": 1.7279052734375, + "y": 3.152099609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4743, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 12, + "unitLink": 45 + } + ], + "addUnitTags": [ + 63963138 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4743, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4745, + "pitch": null, + "reason": null, + "target": { + "x": 1.6463623046875, + "y": 1.0711669921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4746, + "pitch": null, + "reason": null, + "target": { + "x": 1.7127685546875, + "y": 1.1024169921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 74973185, + 77070337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4746, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4748, + "pitch": null, + "reason": null, + "target": { + "x": 1.7415771484375, + "y": 1.1383056640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4752, + "target": { + "x": 25.0767822265625, + "y": 19.092041015625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4752, + "sequence": 427, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4752, + "pitch": null, + "reason": null, + "target": { + "x": 1.629150390625, + "y": 1.0648193359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4754, + "pitch": null, + "reason": null, + "target": { + "x": 1.6566162109375, + "y": 1.0819091796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4756, + "pitch": null, + "reason": null, + "target": { + "x": 1.641357421875, + "y": 1.0301513671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4757, + "pitch": null, + "reason": null, + "target": { + "x": 1.6885986328125, + "y": 1.10302734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4760, + "pitch": null, + "reason": null, + "target": { + "x": 1.7227783203125, + "y": 1.125732421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4761, + "pitch": null, + "reason": null, + "target": { + "x": 1.702392578125, + "y": 3.1783447265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4761, + "pitch": null, + "reason": null, + "target": { + "x": 1.0753173828125, + "y": 1.011962890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4763, + "pitch": null, + "reason": null, + "target": { + "x": 1.20166015625, + "y": 0.8665771484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4763, + "otherUnit": null, + "sequence": 354, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4764, + "pitch": null, + "reason": null, + "target": { + "x": 1.7415771484375, + "y": 1.0999755859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4764, + "pitch": null, + "reason": null, + "target": { + "x": 1.6829833984375, + "y": 3.212158203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4764, + "pitch": null, + "reason": null, + "target": { + "x": 1.3660888671875, + "y": 0.6231689453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 74973185 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4764, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4765, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4767, + "pitch": null, + "reason": null, + "target": { + "x": 1.6656494140625, + "y": 3.242919921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4769, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.029541015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4771, + "pitch": null, + "reason": null, + "target": { + "x": 1.72314453125, + "y": 1.072021484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4771, + "pitch": null, + "reason": null, + "target": { + "x": 1.5408935546875, + "y": 1.0377197265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4772, + "pitch": null, + "reason": null, + "target": { + "x": 1.6583251953125, + "y": 1.0072021484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4772, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4772, + "pitch": null, + "reason": null, + "target": { + "x": 1.444580078125, + "y": 1.0377197265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4774, + "pitch": null, + "reason": null, + "target": { + "x": 1.627197265625, + "y": 0.9759521484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4774, + "pitch": null, + "reason": null, + "target": { + "x": 1.392333984375, + "y": 1.0377197265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4775, + "pitch": null, + "reason": null, + "target": { + "x": 1.5894775390625, + "y": 0.9583740234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4775, + "userid": { + "userId": 2 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 178854, + "y": 92452, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4775, + "otherUnit": null, + "sequence": 356, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4775, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4775, + "pitch": null, + "reason": null, + "target": { + "x": 1.2926025390625, + "y": 1.0377197265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4776, + "pitch": null, + "reason": null, + "target": { + "x": 1.234619140625, + "y": 1.0377197265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4778, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4778, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4778, + "otherUnit": null, + "sequence": 428, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4778, + "pitch": null, + "reason": null, + "target": { + "x": 1.727294921875, + "y": 1.0938720703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4779, + "pitch": null, + "reason": null, + "target": { + "x": 1.234619140625, + "y": 1.1085205078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4780, + "pitch": null, + "reason": null, + "target": { + "x": 1.328125, + "y": 0.6959228515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4780, + "pitch": null, + "reason": null, + "target": { + "x": 1.700927734375, + "y": 1.0648193359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4782, + "pitch": null, + "reason": null, + "target": { + "x": 1.1890869140625, + "y": 0.8349609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 77070337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4782, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4782, + "pitch": null, + "reason": null, + "target": { + "x": 1.6778564453125, + "y": 1.0418701171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4783, + "pitch": null, + "reason": null, + "target": { + "x": 1.0657958984375, + "y": 1.0750732421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4784, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4784, + "pitch": null, + "reason": null, + "target": { + "x": 1.6519775390625, + "y": 1.01708984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4786, + "pitch": null, + "reason": null, + "target": { + "x": 1.626708984375, + "y": 0.9932861328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4789, + "pitch": null, + "reason": null, + "target": { + "x": 1.600341796875, + "y": 0.968505859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 12, + "unitLink": 45 + } + ], + "addUnitTags": [ + 63963138 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4790, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4790, + "pitch": null, + "reason": null, + "target": { + "x": 1.0657958984375, + "y": 1.2047119140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 65798145 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4790, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4791, + "pitch": null, + "reason": null, + "target": { + "x": 1.0657958984375, + "y": 1.34375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4795, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4797, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4800, + "pitch": null, + "reason": null, + "target": { + "x": 1.7242431640625, + "y": 2.030029296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4801, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4804, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4804, + "sequence": 430, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4808, + "pitch": null, + "reason": null, + "target": { + "x": 1.7242431640625, + "y": 2.100830078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4808, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4809, + "target": { + "x": 16.4981689453125, + "y": 23.962890625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4809, + "sequence": 360, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4809, + "pitch": null, + "reason": null, + "target": { + "x": 1.7242431640625, + "y": 2.141357421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 248968, + "y": 321388, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4810, + "otherUnit": null, + "sequence": 431, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4812, + "target": { + "x": 16.5963134765625, + "y": 23.996826171875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4812, + "sequence": 361, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4815, + "pitch": null, + "reason": null, + "target": { + "x": 1.5838623046875, + "y": 3.2020263671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4816, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4816, + "pitch": null, + "reason": null, + "target": { + "x": 1.5838623046875, + "y": 3.2020263671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4817, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4817, + "pitch": null, + "reason": null, + "target": { + "x": 1.7242431640625, + "y": 2.1785888671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4819, + "pitch": null, + "reason": null, + "target": { + "x": 1.7242431640625, + "y": 2.23193359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4820, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4820, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4820, + "pitch": null, + "reason": null, + "target": { + "x": 1.7242431640625, + "y": 2.328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 68943876 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4821, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4821, + "target": { + "x": 30.900634765625, + "y": 43.3751220703125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4821, + "sequence": 432, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 77070337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4824, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4826, + "otherUnit": null, + "sequence": 362, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4826, + "pitch": null, + "reason": null, + "target": { + "x": 1.7242431640625, + "y": 2.3955078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 77070337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4827, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4827, + "pitch": null, + "reason": null, + "target": { + "x": 1.7242431640625, + "y": 2.5009765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4828, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4828, + "pitch": null, + "reason": null, + "target": { + "x": 1.7242431640625, + "y": 2.552001953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4830, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4830, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4830, + "pitch": null, + "reason": null, + "target": { + "x": 1.7242431640625, + "y": 2.6019287109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4831, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4831, + "pitch": null, + "reason": null, + "target": { + "x": 1.7242431640625, + "y": 2.70166015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4832, + "pitch": null, + "reason": null, + "target": { + "x": 4.2822265625, + "y": 0.771728515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4832, + "pitch": null, + "reason": null, + "target": { + "x": 1.62451171875, + "y": 1.0733642578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4832, + "pitch": null, + "reason": null, + "target": { + "x": 1.7242431640625, + "y": 2.7515869140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4834, + "pitch": null, + "reason": null, + "target": { + "x": 1.621826171875, + "y": 1.1090087890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4834, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4835, + "otherUnit": null, + "sequence": 363, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4835, + "pitch": null, + "reason": null, + "target": { + "x": 1.0848388671875, + "y": 1.3057861328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4835, + "target": { + "x": 24.5469970703125, + "y": 47.4622802734375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4835, + "sequence": 433, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4836, + "pitch": null, + "reason": null, + "target": { + "x": 1.6224365234375, + "y": 1.1492919921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4836, + "pitch": null, + "reason": null, + "target": { + "x": 1.2364501953125, + "y": 1.154052734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4838, + "pitch": null, + "reason": null, + "target": { + "x": 1.3533935546875, + "y": 0.999267578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4838, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4839, + "pitch": null, + "reason": null, + "target": { + "x": 1.3533935546875, + "y": 0.7369384765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4839, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4841, + "pitch": null, + "reason": null, + "target": { + "x": 1.3533935546875, + "y": 0.604248046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4842, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4845, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4846, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4846, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4847, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4850, + "sequence": 364, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4850, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4852, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4853, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4853, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 22.5, + "y": 15.25, + "z": 4.99609375 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 9961473, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4853, + "sequence": 434, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 62914563, + 66322433, + 66584577, + 67371009, + 67633153 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4854, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4854, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4857, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.241943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4858, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.241943359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4860, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4861, + "pitch": null, + "reason": null, + "target": { + "x": 1.5252685546875, + "y": 2.259033203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4865, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 77856769, + 78118913 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4865, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4868, + "pitch": null, + "reason": null, + "target": { + "x": 0.7305908203125, + "y": 3.241943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4868, + "pitch": null, + "reason": null, + "target": { + "x": 0.7666015625, + "y": 3.241943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4868, + "pitch": null, + "reason": null, + "target": { + "x": 1.81787109375, + "y": 2.9443359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4868, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4869, + "pitch": null, + "reason": null, + "target": { + "x": 0.7994384765625, + "y": 3.241943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4869, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 27.25, + "y": 18.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 45, + "snapshotUpkeepPlayerId": 2, + "tag": 63963138, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4869, + "sequence": 435, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4871, + "pitch": null, + "reason": null, + "target": { + "x": 0.8394775390625, + "y": 3.241943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4871, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4871, + "pitch": null, + "reason": null, + "target": { + "x": 1.81787109375, + "y": 2.8116455078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4872, + "pitch": null, + "reason": null, + "target": { + "x": 0.8594970703125, + "y": 3.3067626953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4872, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4873, + "pitch": null, + "reason": null, + "target": { + "x": 0.8594970703125, + "y": 3.339599609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4873, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 27.25, + "y": 18.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 45, + "snapshotUpkeepPlayerId": 2, + "tag": 63963138, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4873, + "sequence": 436, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4876, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4876, + "pitch": null, + "reason": null, + "target": { + "x": 0.7193603515625, + "y": 3.2449951171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4878, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4879, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4879, + "pitch": null, + "reason": null, + "target": { + "x": 0.7510986328125, + "y": 3.2608642578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4880, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4880, + "pitch": null, + "reason": null, + "target": { + "x": 1.855224609375, + "y": 2.5135498046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4882, + "pitch": null, + "reason": null, + "target": { + "x": 0.786865234375, + "y": 3.28515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 61865992, + 76808193 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4884, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4884, + "pitch": null, + "reason": null, + "target": { + "x": 0.8236083984375, + "y": 3.3123779296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4886, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4887, + "pitch": null, + "reason": null, + "target": { + "x": 1.855224609375, + "y": 2.574951171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4887, + "pitch": null, + "reason": null, + "target": { + "x": 1.855224609375, + "y": 2.627197265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4887, + "pitch": null, + "reason": null, + "target": { + "x": 0.8487548828125, + "y": 3.3314208984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4888, + "pitch": null, + "reason": null, + "target": { + "x": 1.855224609375, + "y": 2.6666259765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4890, + "pitch": null, + "reason": null, + "target": { + "x": 1.623291015625, + "y": 1.1153564453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4890, + "target": { + "x": 22.8062744140625, + "y": 46.78955078125, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4890, + "sequence": 437, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4891, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4894, + "pitch": null, + "reason": null, + "target": { + "x": 1.6220703125, + "y": 1.077880859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4894, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4895, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4897, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4898, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4901, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 76808193 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4902, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4903, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4905, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4908, + "pitch": null, + "reason": null, + "target": { + "x": 1.7825927734375, + "y": 2.676513671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4910, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 226369, + "y": 407540, + "z": 40919 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4912, + "otherUnit": null, + "sequence": 365, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4914, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4916, + "pitch": null, + "reason": null, + "target": { + "x": 1.7467041015625, + "y": 2.72412109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4917, + "pitch": null, + "reason": null, + "target": { + "x": 1.69677734375, + "y": 2.7740478515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4919, + "pitch": null, + "reason": null, + "target": { + "x": 1.7332763671875, + "y": 2.751220703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 14, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 221184, + "y": 409600, + "z": 40906 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4921, + "otherUnit": null, + "sequence": 366, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4921, + "target": { + "x": 23.00341796875, + "y": 46.505126953125, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4921, + "sequence": 438, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4924, + "target": { + "x": 22.6700439453125, + "y": 47.07861328125, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4924, + "sequence": 439, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4925, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4925, + "pitch": null, + "reason": null, + "target": { + "x": 1.69775390625, + "y": 3.015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4927, + "pitch": null, + "reason": null, + "target": { + "x": 1.8336181640625, + "y": 2.8797607421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4928, + "pitch": null, + "reason": null, + "target": { + "x": 1.7332763671875, + "y": 2.797607421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4929, + "pitch": null, + "reason": null, + "target": { + "x": 1.923095703125, + "y": 3.0379638671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 259837, + "y": 362221, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4929, + "otherUnit": null, + "sequence": 367, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4929, + "pitch": null, + "reason": null, + "target": { + "x": 1.7332763671875, + "y": 2.847412109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4929, + "target": { + "x": 20.4627685546875, + "y": 51.095458984375, + "z": 4.997802734375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4929, + "sequence": 440, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4932, + "pitch": null, + "reason": null, + "target": { + "x": 1.760009765625, + "y": 2.703369140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 247123, + "y": 373629, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4934, + "otherUnit": null, + "sequence": 368, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4934, + "target": { + "x": 22.0631103515625, + "y": 50.1724853515625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4934, + "sequence": 441, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4934, + "pitch": null, + "reason": null, + "target": { + "x": 1.760009765625, + "y": 2.703369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4938, + "target": { + "x": 22.040771484375, + "y": 50.3079833984375, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4938, + "sequence": 442, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4939, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4940, + "target": { + "x": 26.0264892578125, + "y": 47.1591796875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4940, + "sequence": 369, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4942, + "pitch": null, + "reason": null, + "target": { + "x": 1.779541015625, + "y": 2.7529296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4943, + "pitch": null, + "reason": null, + "target": { + "x": 1.779541015625, + "y": 2.789794921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4943, + "otherUnit": null, + "sequence": 443, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4945, + "pitch": null, + "reason": null, + "target": { + "x": 1.779541015625, + "y": 2.8240966796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4945, + "pitch": null, + "reason": null, + "target": { + "x": 1.8834228515625, + "y": 3.0155029296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4945, + "target": { + "x": 25.7144775390625, + "y": 47.261962890625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4945, + "sequence": 370, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4946, + "pitch": null, + "reason": null, + "target": { + "x": 1.779541015625, + "y": 2.8929443359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4946, + "sequence": 444, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4946, + "pitch": null, + "reason": null, + "target": { + "x": 1.7332763671875, + "y": 2.9193115234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4947, + "pitch": null, + "reason": null, + "target": { + "x": 1.816650390625, + "y": 2.9921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4947, + "pitch": null, + "reason": null, + "target": { + "x": 1.698486328125, + "y": 2.9715576171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4949, + "pitch": null, + "reason": null, + "target": { + "x": 1.7828369140625, + "y": 2.978759765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4949, + "pitch": null, + "reason": null, + "target": { + "x": 1.646240234375, + "y": 3.0238037109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4949, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4950, + "pitch": null, + "reason": null, + "target": { + "x": 1.6763916015625, + "y": 1.0604248046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4950, + "pitch": null, + "reason": null, + "target": { + "x": 1.7357177734375, + "y": 2.8765869140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4950, + "pitch": null, + "reason": null, + "target": { + "x": 1.583984375, + "y": 3.0281982421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4950, + "pitch": null, + "reason": null, + "target": { + "x": 1.7664794921875, + "y": 2.7413330078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4951, + "pitch": null, + "reason": null, + "target": { + "x": 1.7506103515625, + "y": 2.9644775390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 162912, + "y": 422759, + "z": 49107 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4951, + "otherUnit": null, + "sequence": 445, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4953, + "pitch": null, + "reason": null, + "target": { + "x": 1.729248046875, + "y": 1.058349609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4953, + "target": { + "x": 19.929931640625, + "y": 51.030029296875, + "z": 5.3544921875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4953, + "sequence": 371, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4953, + "pitch": null, + "reason": null, + "target": { + "x": 1.7703857421875, + "y": 2.7823486328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4954, + "target": { + "x": 19.32177734375, + "y": 51.671142578125, + "z": 5.9971923828125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4954, + "sequence": 446, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4955, + "pitch": null, + "reason": null, + "target": { + "x": 1.7730712890625, + "y": 2.8140869140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4957, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4957, + "pitch": null, + "reason": null, + "target": { + "x": 1.775634765625, + "y": 2.8455810546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4958, + "pitch": null, + "reason": null, + "target": { + "x": 1.5823974609375, + "y": 3.08056640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4958, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4960, + "pitch": null, + "reason": null, + "target": { + "x": 1.71533203125, + "y": 2.98779296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4960, + "pitch": null, + "reason": null, + "target": { + "x": 1.5511474609375, + "y": 3.1199951171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4960, + "pitch": null, + "reason": null, + "target": { + "x": 1.7783203125, + "y": 2.8780517578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4961, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4962, + "pitch": null, + "reason": null, + "target": { + "x": 1.6876220703125, + "y": 3.009521484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4962, + "target": { + "x": 19.0701904296875, + "y": 51.4053955078125, + "z": 5.9971923828125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4962, + "sequence": 447, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 76808193 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4964, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4965, + "pitch": null, + "reason": null, + "target": { + "x": 1.662841796875, + "y": 3.041015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4965, + "target": { + "x": 19.0987548828125, + "y": 51.174072265625, + "z": 5.99755859375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4965, + "sequence": 448, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 231184, + "y": 421560, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4966, + "otherUnit": null, + "sequence": 372, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4968, + "pitch": null, + "reason": null, + "target": { + "x": 1.6949462890625, + "y": 1.0565185546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4969, + "pitch": null, + "reason": null, + "target": { + "x": 1.640380859375, + "y": 3.0703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4969, + "target": { + "x": 19.0987548828125, + "y": 51.2142333984375, + "z": 5.9974365234375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4969, + "sequence": 449, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4971, + "pitch": null, + "reason": null, + "target": { + "x": 1.779541015625, + "y": 2.943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4972, + "pitch": null, + "reason": null, + "target": { + "x": 1.779541015625, + "y": 2.9921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4972, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 25.75, + "y": 51.75, + "z": 4.994140625 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 60555265, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4972, + "sequence": 373, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4973, + "pitch": null, + "reason": null, + "target": { + "x": 1.6201171875, + "y": 3.094970703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4975, + "pitch": null, + "reason": null, + "target": { + "x": 1.50244140625, + "y": 3.1199951171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4976, + "pitch": null, + "reason": null, + "target": { + "x": 1.5618896484375, + "y": 3.1640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4976, + "pitch": null, + "reason": null, + "target": { + "x": 1.5618896484375, + "y": 3.2177734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 4977, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 25.5, + "y": 54.75, + "z": 4.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 27000833, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4977, + "sequence": 374, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4977, + "target": { + "x": 17.3155517578125, + "y": 52.05712890625, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4977, + "sequence": 450, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4977, + "pitch": null, + "reason": null, + "target": { + "x": 1.7794189453125, + "y": 2.912109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4980, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4981, + "pitch": null, + "reason": null, + "target": { + "x": 1.7794189453125, + "y": 2.9471435546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4983, + "pitch": null, + "reason": null, + "target": { + "x": 1.7210693359375, + "y": 2.9921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4984, + "pitch": null, + "reason": null, + "target": { + "x": 1.6546630859375, + "y": 2.9921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4984, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4984, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4984, + "pitch": null, + "reason": null, + "target": { + "x": 1.431640625, + "y": 3.1199951171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4984, + "pitch": null, + "reason": null, + "target": { + "x": 1.3759765625, + "y": 3.1199951171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4986, + "pitch": null, + "reason": null, + "target": { + "x": 1.615478515625, + "y": 2.9921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 70, + "unitLink": 71 + } + ], + "addUnitTags": [ + 62390275 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 4986, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4986, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4986, + "pitch": null, + "reason": null, + "target": { + "x": 1.7789306640625, + "y": 2.9842529296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4987, + "pitch": null, + "reason": null, + "target": { + "x": 1.54833984375, + "y": 2.9921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4987, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4988, + "pitch": null, + "reason": null, + "target": { + "x": 1.5107421875, + "y": 2.9921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4988, + "target": { + "x": 17.0308837890625, + "y": 51.987060546875, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4988, + "sequence": 451, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4990, + "pitch": null, + "reason": null, + "target": { + "x": 1.47314453125, + "y": 2.9921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 65792, + "data": { + "TargetPoint": { + "x": 210177, + "y": 165400, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4990, + "otherUnit": null, + "sequence": 375, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4990, + "pitch": null, + "reason": null, + "target": { + "x": 1.7430419921875, + "y": 3.00244140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4992, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 4992, + "target": { + "x": 17.623291015625, + "y": 52.3935546875, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 4992, + "sequence": 452, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4994, + "pitch": null, + "reason": null, + "target": { + "x": 1.5208740234375, + "y": 3.2177734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4994, + "pitch": null, + "reason": null, + "target": { + "x": 1.6953125, + "y": 3.003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4995, + "pitch": null, + "reason": null, + "target": { + "x": 4.2822265625, + "y": 0.7879638671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4995, + "pitch": null, + "reason": null, + "target": { + "x": 1.372314453125, + "y": 3.2177734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4995, + "pitch": null, + "reason": null, + "target": { + "x": 1.659912109375, + "y": 3.002197265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4997, + "pitch": null, + "reason": null, + "target": { + "x": 1.318603515625, + "y": 3.2177734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4998, + "pitch": null, + "reason": null, + "target": { + "x": 1.4130859375, + "y": 2.9921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4998, + "pitch": null, + "reason": null, + "target": { + "x": 1.37548828125, + "y": 2.9921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4998, + "pitch": null, + "reason": null, + "target": { + "x": 1.5909423828125, + "y": 3.11083984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 137973, + "y": 414514, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 4998, + "otherUnit": null, + "sequence": 376, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4998, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4998, + "pitch": null, + "reason": null, + "target": { + "x": 1.6162109375, + "y": 3.000244140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4999, + "pitch": null, + "reason": null, + "target": { + "x": 1.3427734375, + "y": 2.9921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 4999, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 4999, + "pitch": null, + "reason": null, + "target": { + "x": 1.5740966796875, + "y": 2.998046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5001, + "pitch": null, + "reason": null, + "target": { + "x": 1.3043212890625, + "y": 2.9921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5001, + "pitch": null, + "reason": null, + "target": { + "x": 1.525634765625, + "y": 3.1168212890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5001, + "pitch": null, + "reason": null, + "target": { + "x": 1.49267578125, + "y": 3.1182861328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5002, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5002, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5002, + "pitch": null, + "reason": null, + "target": { + "x": 1.5335693359375, + "y": 2.9959716796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5003, + "pitch": null, + "reason": null, + "target": { + "x": 1.438720703125, + "y": 3.122802734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5003, + "pitch": null, + "reason": null, + "target": { + "x": 1.4993896484375, + "y": 2.9947509765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5005, + "pitch": null, + "reason": null, + "target": { + "x": 1.390625, + "y": 3.1273193359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5005, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5005, + "target": { + "x": 18.905517578125, + "y": 52.8673095703125, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5005, + "sequence": 453, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5005, + "pitch": null, + "reason": null, + "target": { + "x": 1.4632568359375, + "y": 2.9937744140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5007, + "pitch": null, + "reason": null, + "target": { + "x": 1.43017578125, + "y": 2.9931640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5009, + "pitch": null, + "reason": null, + "target": { + "x": 1.3441162109375, + "y": 3.13037109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 71565318, + 78381057 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5009, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5010, + "otherUnit": null, + "sequence": 377, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5010, + "pitch": null, + "reason": null, + "target": { + "x": 1.3121337890625, + "y": 3.1199951171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5010, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5010, + "pitch": null, + "reason": null, + "target": { + "x": 1.2611083984375, + "y": 3.1199951171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5010, + "pitch": null, + "reason": null, + "target": { + "x": 1.3966064453125, + "y": 2.9927978515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 71565318 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5012, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5012, + "pitch": null, + "reason": null, + "target": { + "x": 1.2066650390625, + "y": 3.1199951171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5012, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5013, + "pitch": null, + "reason": null, + "target": { + "x": 4.21630859375, + "y": 0.7745361328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5013, + "pitch": null, + "reason": null, + "target": { + "x": 4.1641845703125, + "y": 0.770263671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5013, + "sequence": 378, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5013, + "pitch": null, + "reason": null, + "target": { + "x": 1.105712890625, + "y": 3.1199951171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5013, + "pitch": null, + "reason": null, + "target": { + "x": 1.3485107421875, + "y": 2.992431640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5014, + "pitch": null, + "reason": null, + "target": { + "x": 4.1170654296875, + "y": 0.768798828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 78381057 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5014, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5014, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5014, + "pitch": null, + "reason": null, + "target": { + "x": 1.062744140625, + "y": 3.1199951171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5016, + "pitch": null, + "reason": null, + "target": { + "x": 1.3089599609375, + "y": 3.1453857421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5016, + "pitch": null, + "reason": null, + "target": { + "x": 4.0738525390625, + "y": 0.7684326171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5016, + "target": { + "x": 9.392333984375, + "y": 53.301513671875, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5016, + "sequence": 454, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5016, + "pitch": null, + "reason": null, + "target": { + "x": 1.31005859375, + "y": 2.9921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5017, + "pitch": null, + "reason": null, + "target": { + "x": 1.281982421875, + "y": 3.171630859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5017, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 73400322 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5018, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5020, + "pitch": null, + "reason": null, + "target": { + "x": 1.2322998046875, + "y": 2.9921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5020, + "pitch": null, + "reason": null, + "target": { + "x": 1.2548828125, + "y": 3.194091796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5021, + "pitch": null, + "reason": null, + "target": { + "x": 1.16748046875, + "y": 3.0113525390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5021, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5023, + "pitch": null, + "reason": null, + "target": { + "x": 1.126708984375, + "y": 3.0521240234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 118536, + "y": 444039, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5023, + "otherUnit": null, + "sequence": 379, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5023, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5024, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5025, + "pitch": null, + "reason": null, + "target": { + "x": 1.069091796875, + "y": 3.1097412109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5025, + "pitch": null, + "reason": null, + "target": { + "x": 1.230224609375, + "y": 3.216552734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5025, + "target": { + "x": 14.8365478515625, + "y": 54.287353515625, + "z": 5.994140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5025, + "sequence": 380, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 62914563, + 66322433, + 66584577, + 67371009, + 67633153 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5027, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5027, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5027, + "pitch": null, + "reason": null, + "target": { + "x": 1.278076171875, + "y": 2.996826171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5028, + "pitch": null, + "reason": null, + "target": { + "x": 1.1956787109375, + "y": 3.2293701171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5028, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5029, + "pitch": null, + "reason": null, + "target": { + "x": 1.1656494140625, + "y": 3.2451171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5029, + "target": { + "x": 14.8348388671875, + "y": 54.334228515625, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5029, + "sequence": 381, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5029, + "pitch": null, + "reason": null, + "target": { + "x": 1.2396240234375, + "y": 3.012939453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5031, + "pitch": null, + "reason": null, + "target": { + "x": 1.209716796875, + "y": 3.028564453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5032, + "pitch": null, + "reason": null, + "target": { + "x": 0.731689453125, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5032, + "pitch": null, + "reason": null, + "target": { + "x": 1.1568603515625, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5033, + "pitch": null, + "reason": null, + "target": { + "x": 0.8739013671875, + "y": 3.3006591796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5033, + "pitch": null, + "reason": null, + "target": { + "x": 1.2091064453125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5033, + "pitch": null, + "reason": null, + "target": { + "x": 1.1741943359375, + "y": 3.0484619140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5035, + "pitch": null, + "reason": null, + "target": { + "x": 1.03955078125, + "y": 3.12255859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5035, + "pitch": null, + "reason": null, + "target": { + "x": 1.009765625, + "y": 3.183837890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5035, + "pitch": null, + "reason": null, + "target": { + "x": 1.25439453125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5035, + "pitch": null, + "reason": null, + "target": { + "x": 1.139404296875, + "y": 3.0684814453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5036, + "pitch": null, + "reason": null, + "target": { + "x": 1.001953125, + "y": 3.16015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5036, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5038, + "pitch": null, + "reason": null, + "target": { + "x": 0.9659423828125, + "y": 3.1961669921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5038, + "pitch": null, + "reason": null, + "target": { + "x": 1.1016845703125, + "y": 3.0904541015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5039, + "pitch": null, + "reason": null, + "target": { + "x": 0.9371337890625, + "y": 3.2249755859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5039, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 12, + "unitLink": 45 + } + ], + "addUnitTags": [ + 63963138 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5039, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5040, + "pitch": null, + "reason": null, + "target": { + "x": 4.0352783203125, + "y": 0.7637939453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5040, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5040, + "pitch": null, + "reason": null, + "target": { + "x": 1.065185546875, + "y": 3.1129150390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 154592, + "y": 407533, + "z": 46833 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5042, + "otherUnit": null, + "sequence": 382, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5042, + "target": { + "x": 25.00537109375, + "y": 18.954345703125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5042, + "sequence": 455, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5043, + "pitch": null, + "reason": null, + "target": { + "x": 3.9979248046875, + "y": 0.759521484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 135 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5043, + "otherUnit": null, + "sequence": 456, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5043, + "pitch": null, + "reason": null, + "target": { + "x": 1.0340576171875, + "y": 3.13623046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5047, + "pitch": null, + "reason": null, + "target": { + "x": 3.9600830078125, + "y": 0.755126953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5047, + "pitch": null, + "reason": null, + "target": { + "x": 1.0047607421875, + "y": 3.16162109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 73400322, + 73138181 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5050, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5050, + "pitch": null, + "reason": null, + "target": { + "x": 3.918701171875, + "y": 0.75 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 73400322 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5050, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5050, + "pitch": null, + "reason": null, + "target": { + "x": 0.9737548828125, + "y": 3.1903076171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 72876035 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5051, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5053, + "pitch": null, + "reason": null, + "target": { + "x": 3.8792724609375, + "y": 0.7445068359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 120041, + "y": 429766, + "z": 49109 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5053, + "otherUnit": null, + "sequence": 383, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5053, + "pitch": null, + "reason": null, + "target": { + "x": 0.9456787109375, + "y": 3.216796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5054, + "pitch": null, + "reason": null, + "target": { + "x": 0.9027099609375, + "y": 3.2432861328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5054, + "pitch": null, + "reason": null, + "target": { + "x": 0.8707275390625, + "y": 3.275390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5055, + "pitch": null, + "reason": null, + "target": { + "x": 0.832275390625, + "y": 3.313720703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5055, + "pitch": null, + "reason": null, + "target": { + "x": 3.8392333984375, + "y": 0.7379150390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5057, + "pitch": null, + "reason": null, + "target": { + "x": 0.7939453125, + "y": 3.3521728515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5057, + "pitch": null, + "reason": null, + "target": { + "x": 1.12646484375, + "y": 3.2437744140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5058, + "pitch": null, + "reason": null, + "target": { + "x": 3.801513671875, + "y": 0.73095703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5061, + "pitch": null, + "reason": null, + "target": { + "x": 3.7637939453125, + "y": 0.7235107421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 223232, + "y": 149504, + "z": 40912 + }, + "snapshotUnitLink": 45, + "snapshotUpkeepPlayerId": 2, + "tag": 63963138, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5061, + "otherUnit": null, + "sequence": 457, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5061, + "pitch": null, + "reason": null, + "target": { + "x": 0.9154052734375, + "y": 3.2432861328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5062, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5064, + "pitch": null, + "reason": null, + "target": { + "x": 1.07177734375, + "y": 3.2457275390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5064, + "pitch": null, + "reason": null, + "target": { + "x": 0.8861083984375, + "y": 3.269287109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5065, + "pitch": null, + "reason": null, + "target": { + "x": 3.723876953125, + "y": 0.71630859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5066, + "pitch": null, + "reason": null, + "target": { + "x": 1.037353515625, + "y": 3.2493896484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5066, + "pitch": null, + "reason": null, + "target": { + "x": 0.851806640625, + "y": 3.300048828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5068, + "pitch": null, + "reason": null, + "target": { + "x": 3.6846923828125, + "y": 0.71044921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5069, + "pitch": null, + "reason": null, + "target": { + "x": 0.9971923828125, + "y": 3.255615234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5069, + "pitch": null, + "reason": null, + "target": { + "x": 0.8272705078125, + "y": 3.322021484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5070, + "pitch": null, + "reason": null, + "target": { + "x": 3.6484375, + "y": 0.7056884765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5072, + "pitch": null, + "reason": null, + "target": { + "x": 0.757080078125, + "y": 3.35693359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5072, + "pitch": null, + "reason": null, + "target": { + "x": 0.96533203125, + "y": 3.2620849609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5072, + "pitch": null, + "reason": null, + "target": { + "x": 0.798095703125, + "y": 3.3482666015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5073, + "pitch": null, + "reason": null, + "target": { + "x": 0.71875, + "y": 3.35693359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5073, + "pitch": null, + "reason": null, + "target": { + "x": 3.61572265625, + "y": 0.701904296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5074, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.35693359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 73924610, + 77856769 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5074, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5076, + "pitch": null, + "reason": null, + "target": { + "x": 0.9305419921875, + "y": 3.2706298828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5077, + "pitch": null, + "reason": null, + "target": { + "x": 3.5823974609375, + "y": 0.698974609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5080, + "pitch": null, + "reason": null, + "target": { + "x": 0.8992919921875, + "y": 3.2803955078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5080, + "pitch": null, + "reason": null, + "target": { + "x": 3.5496826171875, + "y": 0.697998046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 78118913 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5080, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5080, + "pitch": null, + "reason": null, + "target": { + "x": 0.76220703125, + "y": 3.3544921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5084, + "pitch": null, + "reason": null, + "target": { + "x": 0.8685302734375, + "y": 3.2935791015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 70, + "unitLink": 71 + } + ], + "addUnitTags": [ + 62390275 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5084, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5084, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5084, + "target": { + "x": 18.36181640625, + "y": 18.36767578125, + "z": 5.815185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5084, + "sequence": 458, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5084, + "pitch": null, + "reason": null, + "target": { + "x": 0.72509765625, + "y": 3.355712890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5085, + "pitch": null, + "reason": null, + "target": { + "x": 3.513916015625, + "y": 0.7022705078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5087, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5088, + "pitch": null, + "reason": null, + "target": { + "x": 0.6910400390625, + "y": 3.3568115234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5090, + "pitch": null, + "reason": null, + "target": { + "x": 0.8348388671875, + "y": 3.3077392578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5090, + "pitch": null, + "reason": null, + "target": { + "x": 0.7144775390625, + "y": 3.2803955078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5091, + "pitch": null, + "reason": null, + "target": { + "x": 3.478759765625, + "y": 0.715087890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 73400322 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5091, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5092, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5094, + "pitch": null, + "reason": null, + "target": { + "x": 0.8046875, + "y": 3.317626953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5095, + "pitch": null, + "reason": null, + "target": { + "x": 3.44921875, + "y": 0.731689453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5095, + "pitch": null, + "reason": null, + "target": { + "x": 0.8643798828125, + "y": 3.183837890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5096, + "pitch": null, + "reason": null, + "target": { + "x": 0.8106689453125, + "y": 3.183837890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5096, + "otherUnit": null, + "sequence": 459, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5098, + "pitch": null, + "reason": null, + "target": { + "x": 0.7742919921875, + "y": 3.3250732421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5098, + "pitch": null, + "reason": null, + "target": { + "x": 3.4212646484375, + "y": 0.7503662109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5098, + "sequence": 460, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5102, + "pitch": null, + "reason": null, + "target": { + "x": 0.7392578125, + "y": 3.3306884765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5102, + "pitch": null, + "reason": null, + "target": { + "x": 3.3912353515625, + "y": 0.772216796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5102, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 40960, + "y": 496838, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5103, + "otherUnit": null, + "sequence": 461, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5105, + "pitch": null, + "reason": null, + "target": { + "x": 0.7144775390625, + "y": 3.3314208984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5105, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 70, + "unitLink": 71 + }, + { + "count": 19, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 73400322, + 62390275, + 50855937, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705, + 63438849, + 71041025, + 79429636 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5106, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5106, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3314208984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5109, + "pitch": null, + "reason": null, + "target": { + "x": 0.706298828125, + "y": 3.3338623046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5109, + "pitch": null, + "reason": null, + "target": { + "x": 1.492431640625, + "y": 1.13232421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 15 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5110, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5110, + "target": { + "x": 18.065185546875, + "y": 19.577392578125, + "z": 4.997802734375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5110, + "sequence": 462, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5111, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 5113, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 17.75, + "y": 16.75, + "z": 5.99609375 + }, + "snapshotUnitLink": 42, + "snapshotUpkeepPlayerId": 2, + "tag": 59506689, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5113, + "sequence": 463, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 88064, + "y": 452608, + "z": 49104 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 49807361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5114, + "otherUnit": null, + "sequence": 384, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5114, + "pitch": null, + "reason": null, + "target": { + "x": 1.4169921875, + "y": 1.13232421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5116, + "pitch": null, + "reason": null, + "target": { + "x": 1.3682861328125, + "y": 1.13232421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5116, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5117, + "pitch": null, + "reason": null, + "target": { + "x": 0.6883544921875, + "y": 3.3875732421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5117, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5117, + "pitch": null, + "reason": null, + "target": { + "x": 1.26611328125, + "y": 1.13232421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5118, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5118, + "pitch": null, + "reason": null, + "target": { + "x": 0.8675537109375, + "y": 3.126953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5118, + "otherUnit": null, + "sequence": 464, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5118, + "pitch": null, + "reason": null, + "target": { + "x": 1.23486328125, + "y": 1.13232421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5120, + "pitch": null, + "reason": null, + "target": { + "x": 1.48095703125, + "y": 1.1875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5120, + "pitch": null, + "reason": null, + "target": { + "x": 0.6883544921875, + "y": 3.419921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5120, + "pitch": null, + "reason": null, + "target": { + "x": 1.01611328125, + "y": 2.9783935546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5120, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5121, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5121, + "pitch": null, + "reason": null, + "target": { + "x": 1.287841796875, + "y": 2.8994140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5121, + "sequence": 465, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5122, + "pitch": null, + "reason": null, + "target": { + "x": 1.3572998046875, + "y": 2.8994140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5122, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 229993, + "y": 398029, + "z": 39942 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5124, + "otherUnit": null, + "sequence": 385, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 125663, + "y": 139966, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5124, + "otherUnit": null, + "sequence": 466, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 20, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 73400322, + 50855937, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705, + 63438849, + 69992449, + 71041025, + 79429636 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5125, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5126, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5126, + "target": { + "x": 15.2508544921875, + "y": 17.1292724609375, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5126, + "sequence": 467, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5129, + "pitch": null, + "reason": null, + "target": { + "x": 3.1329345703125, + "y": 0.91845703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5129, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5132, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5132, + "pitch": null, + "reason": null, + "target": { + "x": 1.1663818359375, + "y": 1.13232421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5132, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5132, + "pitch": null, + "reason": null, + "target": { + "x": 1.1165771484375, + "y": 1.13232421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5133, + "pitch": null, + "reason": null, + "target": { + "x": 2.981201171875, + "y": 0.91845703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5133, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5133, + "pitch": null, + "reason": null, + "target": { + "x": 1.0771484375, + "y": 1.112548828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5135, + "pitch": null, + "reason": null, + "target": { + "x": 2.8485107421875, + "y": 0.91845703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5135, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5135, + "pitch": null, + "reason": null, + "target": { + "x": 1.0771484375, + "y": 1.081298828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5136, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5136, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 73662466, + 74973186, + 77070338, + 79953921, + 80216066, + 81002498, + 81526785 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5139, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5139, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5140, + "otherUnit": null, + "sequence": 386, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5140, + "target": { + "x": 15.1903076171875, + "y": 15.9132080078125, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5140, + "sequence": 468, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5142, + "pitch": null, + "reason": null, + "target": { + "x": 2.6937255859375, + "y": 0.91845703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 73662466 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5142, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5143, + "sequence": 387, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5143, + "pitch": null, + "reason": null, + "target": { + "x": 2.4061279296875, + "y": 0.91845703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5143, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5143, + "target": { + "x": 15.1513671875, + "y": 15.9385986328125, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5143, + "sequence": 469, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5144, + "pitch": null, + "reason": null, + "target": { + "x": 2.2987060546875, + "y": 0.91845703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 74973186 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5144, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5144, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 5146, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.396728515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5146, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5147, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 284189, + "y": 120548, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5148, + "otherUnit": null, + "sequence": 388, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5148, + "pitch": null, + "reason": null, + "target": { + "x": 1.0771484375, + "y": 1.0081787109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5148, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5150, + "pitch": null, + "reason": null, + "target": { + "x": 1.0771484375, + "y": 0.9512939453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5150, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5151, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5151, + "pitch": null, + "reason": null, + "target": { + "x": 1.0771484375, + "y": 0.9107666015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5152, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5154, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5154, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5157, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 77070338, + 79953921, + 80216066, + 81002498, + 81526785 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5157, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5157, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5158, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5161, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.4334716796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5161, + "otherUnit": null, + "sequence": 389, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5162, + "pitch": null, + "reason": null, + "target": { + "x": 1.54931640625, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 77070338 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5162, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5163, + "pitch": null, + "reason": null, + "target": { + "x": 1.3912353515625, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5165, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.47021484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5165, + "pitch": null, + "reason": null, + "target": { + "x": 1.25537109375, + "y": 3.0946044921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5166, + "pitch": null, + "reason": null, + "target": { + "x": 1.1953125, + "y": 2.898681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 115981, + "y": 373701, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5168, + "otherUnit": null, + "sequence": 390, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 76283905 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5168, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5169, + "pitch": null, + "reason": null, + "target": { + "x": 1.0771484375, + "y": 0.958251953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5170, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5172, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.430419921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 65798145 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5172, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5174, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5174, + "pitch": null, + "reason": null, + "target": { + "x": 1.0771484375, + "y": 1.044189453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5176, + "pitch": null, + "reason": null, + "target": { + "x": 1.0771484375, + "y": 1.0986328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5177, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5177, + "pitch": null, + "reason": null, + "target": { + "x": 1.0771484375, + "y": 1.1903076171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5178, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5178, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5178, + "pitch": null, + "reason": null, + "target": { + "x": 1.0771484375, + "y": 1.2413330078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5181, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5183, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5184, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5184, + "pitch": null, + "reason": null, + "target": { + "x": 1.1060791015625, + "y": 1.26806640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5185, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5185, + "pitch": null, + "reason": null, + "target": { + "x": 1.156005859375, + "y": 1.26806640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5187, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5187, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5188, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5188, + "pitch": null, + "reason": null, + "target": { + "x": 1.183837890625, + "y": 1.2459716796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5189, + "pitch": null, + "reason": null, + "target": { + "x": 1.183837890625, + "y": 1.192626953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5191, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5191, + "pitch": null, + "reason": null, + "target": { + "x": 1.183837890625, + "y": 1.14501953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5192, + "pitch": null, + "reason": null, + "target": { + "x": 1.183837890625, + "y": 1.05224609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 74711041 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5193, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5193, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 210944, + "y": 423936, + "z": 40912 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 60555265, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5196, + "otherUnit": null, + "sequence": 391, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5199, + "pitch": null, + "reason": null, + "target": { + "x": 1.1910400390625, + "y": 1.13037109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5199, + "pitch": null, + "reason": null, + "target": { + "x": 1.6954345703125, + "y": 1.0162353515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5199, + "target": { + "x": 15.4591064453125, + "y": 15.5035400390625, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5199, + "sequence": 470, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5200, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 65011714, + 75759617, + 78643201 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5202, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5202, + "target": { + "x": 15.38916015625, + "y": 15.521240234375, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5202, + "sequence": 471, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5204, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5206, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 223232, + "y": 452608, + "z": 40912 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 76546049, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5207, + "otherUnit": null, + "sequence": 392, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5209, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 79691779, + 80740355 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5214, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5215, + "pitch": null, + "reason": null, + "target": { + "x": 1.1536865234375, + "y": 1.1513671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 67895298 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5215, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5215, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5217, + "pitch": null, + "reason": null, + "target": { + "x": 1.0989990234375, + "y": 1.1866455078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5217, + "target": { + "x": 14.8194580078125, + "y": 15.5482177734375, + "z": 5.995849609375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5217, + "sequence": 472, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5218, + "pitch": null, + "reason": null, + "target": { + "x": 1.0697021484375, + "y": 1.1993408203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5219, + "pitch": null, + "reason": null, + "target": { + "x": 1.0374755859375, + "y": 1.2166748046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 239616, + "y": 436224, + "z": 40912 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 32768001, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5219, + "otherUnit": null, + "sequence": 393, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5219, + "target": { + "x": 14.420654296875, + "y": 15.5850830078125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5219, + "sequence": 473, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5221, + "pitch": null, + "reason": null, + "target": { + "x": 1, + "y": 1.2406005859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5221, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5222, + "pitch": null, + "reason": null, + "target": { + "x": 0.918212890625, + "y": 1.336669921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5222, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5224, + "pitch": null, + "reason": null, + "target": { + "x": 0.8995361328125, + "y": 1.3748779296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5224, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5224, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5225, + "pitch": null, + "reason": null, + "target": { + "x": 0.884521484375, + "y": 1.4168701171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5226, + "pitch": null, + "reason": null, + "target": { + "x": 0.88525390625, + "y": 1.452880859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5226, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5226, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5228, + "pitch": null, + "reason": null, + "target": { + "x": 0.89208984375, + "y": 1.5009765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5230, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.4293212890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 18, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705, + 63438849, + 69992449 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5235, + "userid": { + "userId": 0 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 65536, + "y": 473088, + "z": 49104 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 23855105, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5235, + "otherUnit": null, + "sequence": 394, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5235, + "pitch": null, + "reason": null, + "target": { + "x": 1.183837890625, + "y": 0.967529296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5239, + "userid": { + "userId": 1 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5239, + "target": { + "x": 14.2999267578125, + "y": 14.2078857421875, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5239, + "sequence": 474, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5240, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5241, + "target": { + "x": 15.37890625, + "y": 14.223388671875, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5241, + "sequence": 475, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 53477377 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5247, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5250, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 79872, + "y": 481280, + "z": 49104 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 31719425, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5251, + "otherUnit": null, + "sequence": 395, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5251, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5252, + "pitch": null, + "reason": null, + "target": { + "x": 1.2510986328125, + "y": 0.95947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5254, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5254, + "pitch": null, + "reason": null, + "target": { + "x": 1.2974853515625, + "y": 0.95947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5255, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5256, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 19, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705, + 63438849, + 69992449, + 71041025 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5258, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5259, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5259, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5263, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5263, + "pitch": null, + "reason": null, + "target": { + "x": 2.1773681640625, + "y": 0.8572998046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5263, + "pitch": null, + "reason": null, + "target": { + "x": 2.1395263671875, + "y": 0.8572998046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5265, + "pitch": null, + "reason": null, + "target": { + "x": 2.0067138671875, + "y": 0.8572998046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 199445, + "y": 127829, + "z": 40918 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5266, + "otherUnit": null, + "sequence": 396, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5267, + "pitch": null, + "reason": null, + "target": { + "x": 1.841796875, + "y": 0.8858642578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 65798145 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5269, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5271, + "target": { + "x": 14.964111328125, + "y": 17.6109619140625, + "z": 5.996826171875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5271, + "sequence": 476, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5271, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 18, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 53477377, + 53739521, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63438849, + 69992449, + 71041025 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5274, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 68943876 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5277, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5278, + "pitch": null, + "reason": null, + "target": { + "x": 1.8785400390625, + "y": 0.893310546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 8 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5280, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5280, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5280, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 377 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5280, + "otherUnit": null, + "sequence": 477, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5281, + "pitch": null, + "reason": null, + "target": { + "x": 1.9505615234375, + "y": 0.906005859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5282, + "pitch": null, + "reason": null, + "target": { + "x": 2.0045166015625, + "y": 0.9150390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5284, + "pitch": null, + "reason": null, + "target": { + "x": 2.059326171875, + "y": 0.9322509765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5284, + "target": { + "x": 37.993896484375, + "y": 14.531982421875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5284, + "sequence": 397, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5284, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5284, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5287, + "target": { + "x": 38.18701171875, + "y": 14.582763671875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5287, + "sequence": 398, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 68943876 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5288, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5289, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5291, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 163157, + "y": 151742, + "z": 44136 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5291, + "otherUnit": null, + "sequence": 478, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5292, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5293, + "target": { + "x": 38.915283203125, + "y": 15.171875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5293, + "sequence": 399, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5293, + "target": { + "x": 12.1956787109375, + "y": 17.3895263671875, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5293, + "sequence": 479, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5295, + "pitch": null, + "reason": null, + "target": { + "x": 1.2255859375, + "y": 0.95947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5296, + "pitch": null, + "reason": null, + "target": { + "x": 1.13623046875, + "y": 0.95947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5297, + "target": { + "x": 11.9442138671875, + "y": 16.275146484375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5297, + "sequence": 480, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5299, + "pitch": null, + "reason": null, + "target": { + "x": 2.03076171875, + "y": 0.95556640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5300, + "pitch": null, + "reason": null, + "target": { + "x": 1.6790771484375, + "y": 3.4293212890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 67633153 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5300, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5300, + "target": { + "x": 13.5247802734375, + "y": 15.43994140625, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5300, + "sequence": 481, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5303, + "pitch": null, + "reason": null, + "target": { + "x": 1.984619140625, + "y": 0.94580078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5304, + "pitch": null, + "reason": null, + "target": { + "x": 1.984619140625, + "y": 1.043701171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5307, + "target": { + "x": 27.06591796875, + "y": 20.192626953125, + "z": 4.9608154296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5307, + "sequence": 400, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5307, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5308, + "target": { + "x": 15.953857421875, + "y": 16.005615234375, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5308, + "sequence": 482, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5310, + "pitch": null, + "reason": null, + "target": { + "x": 2.059326171875, + "y": 0.9405517578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 5310, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 25.75, + "y": 16.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 39, + "snapshotUpkeepPlayerId": 2, + "tag": 0, + "targetUnitFlags": 175, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5310, + "sequence": 401, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5311, + "pitch": null, + "reason": null, + "target": { + "x": 1.736083984375, + "y": 3.3887939453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5311, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5313, + "pitch": null, + "reason": null, + "target": { + "x": 1.783447265625, + "y": 3.372314453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5313, + "target": { + "x": 26.668212890625, + "y": 17.8935546875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5313, + "sequence": 402, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5313, + "target": { + "x": 16.0775146484375, + "y": 16.3026123046875, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5313, + "sequence": 483, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5315, + "pitch": null, + "reason": null, + "target": { + "x": 1.92138671875, + "y": 1.043701171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5317, + "pitch": null, + "reason": null, + "target": { + "x": 1.7886962890625, + "y": 1.043701171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5317, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5318, + "pitch": null, + "reason": null, + "target": { + "x": 1.7208251953125, + "y": 3.261962890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5318, + "target": { + "x": 23.166748046875, + "y": 17.428466796875, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5318, + "sequence": 403, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5319, + "pitch": null, + "reason": null, + "target": { + "x": 2, + "y": 0.9600830078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5319, + "pitch": null, + "reason": null, + "target": { + "x": 1.7208251953125, + "y": 3.261962890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5321, + "pitch": null, + "reason": null, + "target": { + "x": 1.9617919921875, + "y": 0.9713134765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 81264642 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5321, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5322, + "pitch": null, + "reason": null, + "target": { + "x": 1.92431640625, + "y": 0.9832763671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 5322, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 25.75, + "y": 16.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 39, + "snapshotUpkeepPlayerId": 2, + "tag": 0, + "targetUnitFlags": 175, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5322, + "sequence": 404, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5322, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5326, + "pitch": null, + "reason": null, + "target": { + "x": 1.890625, + "y": 0.99609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5326, + "sequence": 405, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5326, + "target": { + "x": 14.704345703125, + "y": 15.58154296875, + "z": 5.9951171875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5326, + "sequence": 484, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5328, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5329, + "pitch": null, + "reason": null, + "target": { + "x": 1.8590087890625, + "y": 1.00732421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5329, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5329, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5332, + "pitch": null, + "reason": null, + "target": { + "x": 1.822265625, + "y": 1.02001953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5333, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5334, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 76546049 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5336, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5336, + "pitch": null, + "reason": null, + "target": { + "x": 1.787109375, + "y": 1.026123046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5336, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5337, + "target": { + "x": 24.4417724609375, + "y": 18.166748046875, + "z": 4.994384765625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5337, + "sequence": 406, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5340, + "target": { + "x": 23.4295654296875, + "y": 18.52001953125, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5340, + "sequence": 407, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 81264642 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5341, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5344, + "target": { + "x": 21.4083251953125, + "y": 18.404296875, + "z": 4.9970703125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5344, + "sequence": 408, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5345, + "pitch": null, + "reason": null, + "target": { + "x": 1.7403564453125, + "y": 3.2154541015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5347, + "pitch": null, + "reason": null, + "target": { + "x": 1.7403564453125, + "y": 3.1802978515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5347, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5348, + "target": { + "x": 22.095947265625, + "y": 18.541015625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5348, + "sequence": 409, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5349, + "pitch": null, + "reason": null, + "target": { + "x": 1.7532958984375, + "y": 1.038818359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5351, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5351, + "pitch": null, + "reason": null, + "target": { + "x": 1.6844482421875, + "y": 1.043701171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5352, + "pitch": null, + "reason": null, + "target": { + "x": 1.6466064453125, + "y": 0.96728515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5352, + "target": { + "x": 19.4583740234375, + "y": 18.2822265625, + "z": 5.5626220703125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5352, + "sequence": 410, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5352, + "pitch": null, + "reason": null, + "target": { + "x": 1.6275634765625, + "y": 1.043701171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x7d" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5352, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5355, + "pitch": null, + "reason": null, + "target": { + "x": 1.6988525390625, + "y": 3.1634521484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5355, + "pitch": null, + "reason": null, + "target": { + "x": 1.7232666015625, + "y": 1.0523681640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5355, + "target": { + "x": 20.0452880859375, + "y": 18.8876953125, + "z": 5.264404296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5355, + "sequence": 411, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5355, + "pitch": null, + "reason": null, + "target": { + "x": 1.5257568359375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5355, + "pitch": null, + "reason": null, + "target": { + "x": 1.729248046875, + "y": 3.2301025390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5356, + "pitch": null, + "reason": null, + "target": { + "x": 1.4759521484375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5358, + "pitch": null, + "reason": null, + "target": { + "x": 1.42724609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5359, + "sequence": 412, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5359, + "pitch": null, + "reason": null, + "target": { + "x": 1.3402099609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5359, + "pitch": null, + "reason": null, + "target": { + "x": 1.7322998046875, + "y": 3.197265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5362, + "pitch": null, + "reason": null, + "target": { + "x": 1.6988525390625, + "y": 3.2130126953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5362, + "pitch": null, + "reason": null, + "target": { + "x": 1.6895751953125, + "y": 1.0665283203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 65798145, + 73924610, + 77856769, + 78118913, + 79691779, + 80740355, + 82051074 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5362, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5363, + "pitch": null, + "reason": null, + "target": { + "x": 1.64208984375, + "y": 1.0150146484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5366, + "pitch": null, + "reason": null, + "target": { + "x": 1.6573486328125, + "y": 1.0748291015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5366, + "pitch": null, + "reason": null, + "target": { + "x": 1.6165771484375, + "y": 1.06689453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5367, + "pitch": null, + "reason": null, + "target": { + "x": 1.591064453125, + "y": 1.093017578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5369, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 170483, + "y": 170561, + "z": 40939 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5369, + "otherUnit": null, + "sequence": 485, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51118081, + 51380225, + 61865992, + 66846723, + 68681732, + 69468161, + 73138181, + 75235329, + 75759617, + 76021761, + 76808193, + 77332481, + 78643201, + 78905347, + 79167492, + 79429636 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5371, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5371, + "pitch": null, + "reason": null, + "target": { + "x": 1.622802734375, + "y": 1.0823974609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5373, + "pitch": null, + "reason": null, + "target": { + "x": 1.5548095703125, + "y": 1.1029052734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 328117, + "y": 404658, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5373, + "otherUnit": null, + "sequence": 413, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 68943876 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5373, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5374, + "pitch": null, + "reason": null, + "target": { + "x": 1.4884033203125, + "y": 1.1029052734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5374, + "pitch": null, + "reason": null, + "target": { + "x": 1.7008056640625, + "y": 3.2054443359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5377, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5377, + "pitch": null, + "reason": null, + "target": { + "x": 1.5860595703125, + "y": 1.087646484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5377, + "pitch": null, + "reason": null, + "target": { + "x": 1.4266357421875, + "y": 1.10205078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5377, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 114792, + "y": 141179, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5377, + "otherUnit": null, + "sequence": 486, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5378, + "pitch": null, + "reason": null, + "target": { + "x": 1.3720703125, + "y": 1.10205078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5378, + "pitch": null, + "reason": null, + "target": { + "x": 1.263671875, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5380, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5380, + "pitch": null, + "reason": null, + "target": { + "x": 1.2322998046875, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5381, + "pitch": null, + "reason": null, + "target": { + "x": 1.5538330078125, + "y": 1.08984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5381, + "pitch": null, + "reason": null, + "target": { + "x": 1.33544921875, + "y": 1.1014404296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5381, + "target": { + "x": 13.0589599609375, + "y": 17.2640380859375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5381, + "sequence": 487, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 53215233, + 53739521, + 57671682, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5382, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5386, + "pitch": null, + "reason": null, + "target": { + "x": 1.519287109375, + "y": 1.0943603515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0d" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5388, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 82051074 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5388, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5390, + "pitch": null, + "reason": null, + "target": { + "x": 1.4832763671875, + "y": 1.098876953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5395, + "pitch": null, + "reason": null, + "target": { + "x": 1.4443359375, + "y": 1.1041259765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5396, + "pitch": null, + "reason": null, + "target": { + "x": 1.3992919921875, + "y": 1.110107421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5397, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 3.381591796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 15, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 73728, + "y": 450560, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5397, + "otherUnit": null, + "sequence": 414, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 5397, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 22.5, + "y": 16.25, + "z": 4.99609375 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5397, + "sequence": 488, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5399, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 3.381591796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5400, + "pitch": null, + "reason": null, + "target": { + "x": 1.359619140625, + "y": 1.1138916015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5401, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 28, + "unitLink": 69 + } + ], + "addUnitTags": [ + 50069506 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5403, + "userid": { + "userId": 2 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 92160, + "y": 428032, + "z": 49104 + }, + "snapshotUnitLink": 111, + "snapshotUpkeepPlayerId": 1, + "tag": 60817410, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5403, + "otherUnit": null, + "sequence": 415, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5404, + "pitch": null, + "reason": null, + "target": { + "x": 1.320556640625, + "y": 1.11767578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5406, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5407, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5407, + "pitch": null, + "reason": null, + "target": { + "x": 1.1905517578125, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 6, + "abilLink": 153 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5407, + "otherUnit": null, + "sequence": 489, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5408, + "pitch": null, + "reason": null, + "target": { + "x": 1.2890625, + "y": 1.119140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5411, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5411, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5412, + "pitch": null, + "reason": null, + "target": { + "x": 1.254638671875, + "y": 1.1221923828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5412, + "pitch": null, + "reason": null, + "target": { + "x": 1.365478515625, + "y": 1.076171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5412, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5414, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 151326, + "y": 167782, + "z": 40939 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5415, + "otherUnit": null, + "sequence": 490, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5418, + "pitch": null, + "reason": null, + "target": { + "x": 1.214111328125, + "y": 1.1251220703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 18, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705, + 63438849, + 71041025, + 73662467, + 78381058 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5421, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 71565319, + 83361793 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5421, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5422, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5426, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 65798145, + 73924610, + 77856769, + 78118913, + 79691779, + 80740355 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5426, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5427, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5429, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5433, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2532958984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5433, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.1806640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 82575361, + 68943876 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5433, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5434, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 5436, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 15.653564453125, + "y": 16.2119140625, + "z": 7.869140625 + }, + "snapshotUnitLink": 76, + "snapshotUpkeepPlayerId": 2, + "tag": 82575361, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5436, + "sequence": 491, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5437, + "pitch": null, + "reason": null, + "target": { + "x": 1.4027099609375, + "y": 1.0909423828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5437, + "pitch": null, + "reason": null, + "target": { + "x": 0.7537841796875, + "y": 3.1806640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5437, + "pitch": null, + "reason": null, + "target": { + "x": 0.905517578125, + "y": 3.1806640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5438, + "pitch": null, + "reason": null, + "target": { + "x": 0.952880859375, + "y": 3.1806640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5440, + "pitch": null, + "reason": null, + "target": { + "x": 1.43359375, + "y": 1.106201171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x7f" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5440, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 387 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5440, + "otherUnit": null, + "sequence": 492, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 151447, + "y": 170032, + "z": 40939 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5441, + "otherUnit": null, + "sequence": 493, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 83099649 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5442, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5442, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5444, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5444, + "pitch": null, + "reason": null, + "target": { + "x": 1.1905517578125, + "y": 1.020263671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5445, + "target": { + "x": 22.6131591796875, + "y": 23.723388671875, + "z": 5.0477294921875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5445, + "sequence": 494, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5447, + "pitch": null, + "reason": null, + "target": { + "x": 1.4647216796875, + "y": 1.115234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 82837505 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5451, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5452, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5453, + "pitch": null, + "reason": null, + "target": { + "x": 0.9775390625, + "y": 1.4068603515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 5453, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 15.7099609375, + "y": 17.2806396484375, + "z": 5.99609375 + }, + "snapshotUnitLink": 520, + "snapshotUpkeepPlayerId": 2, + "tag": 68943876, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5453, + "sequence": 495, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5455, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5455, + "pitch": null, + "reason": null, + "target": { + "x": 0.9775390625, + "y": 1.4068603515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5456, + "target": { + "x": 13.111328125, + "y": 49.9434814453125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5456, + "sequence": 416, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5456, + "target": { + "x": 14.940185546875, + "y": 17.320068359375, + "z": 5.9967041015625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5456, + "sequence": 496, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5459, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5459, + "sequence": 417, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5462, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5463, + "pitch": null, + "reason": null, + "target": { + "x": 1.5252685546875, + "y": 1.02783203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5463, + "pitch": null, + "reason": null, + "target": { + "x": 1.246337890625, + "y": 1.1348876953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5463, + "pitch": null, + "reason": null, + "target": { + "x": 0.952880859375, + "y": 3.1363525390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5463, + "target": { + "x": 15.951416015625, + "y": 23.6517333984375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5463, + "sequence": 497, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5464, + "pitch": null, + "reason": null, + "target": { + "x": 0.952880859375, + "y": 3.0068359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5464, + "pitch": null, + "reason": null, + "target": { + "x": 1.1905517578125, + "y": 1.0853271484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5464, + "pitch": null, + "reason": null, + "target": { + "x": 1.5252685546875, + "y": 1.02783203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 62390276, + 79953921, + 80216066, + 81002498, + 81526785 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5466, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5466, + "target": { + "x": 16.718017578125, + "y": 25.521240234375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5466, + "sequence": 498, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5467, + "otherUnit": null, + "sequence": 418, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 62390276 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5468, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5470, + "sequence": 419, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5471, + "pitch": null, + "reason": null, + "target": { + "x": 1.414306640625, + "y": 1.119384765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 79953921 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5471, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5473, + "pitch": null, + "reason": null, + "target": { + "x": 1.3345947265625, + "y": 1.1181640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5473, + "sequence": 420, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 82051074 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5473, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 80216066 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5474, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5475, + "pitch": null, + "reason": null, + "target": { + "x": 1.21240234375, + "y": 1.129638671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5475, + "pitch": null, + "reason": null, + "target": { + "x": 1.1572265625, + "y": 1.1383056640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5477, + "pitch": null, + "reason": null, + "target": { + "x": 1.1170654296875, + "y": 1.1422119140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 190266, + "y": 159528, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5477, + "otherUnit": null, + "sequence": 499, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5478, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5479, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5482, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5482, + "pitch": null, + "reason": null, + "target": { + "x": 1.1905517578125, + "y": 1.1595458984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5483, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x18" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5483, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5483, + "pitch": null, + "reason": null, + "target": { + "x": 1.1905517578125, + "y": 1.2093505859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 149071, + "y": 228245, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5483, + "otherUnit": null, + "sequence": 500, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5485, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.119873046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5485, + "pitch": null, + "reason": null, + "target": { + "x": 1.1905517578125, + "y": 1.260498046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 67633153 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5486, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5486, + "pitch": null, + "reason": null, + "target": { + "x": 1.694580078125, + "y": 2.8607177734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5488, + "pitch": null, + "reason": null, + "target": { + "x": 1.4580078125, + "y": 1.02783203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5488, + "pitch": null, + "reason": null, + "target": { + "x": 1.754638671875, + "y": 2.8006591796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5488, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5488, + "target": { + "x": 19.8702392578125, + "y": 27.488037109375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5488, + "sequence": 501, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5489, + "pitch": null, + "reason": null, + "target": { + "x": 1.3843994140625, + "y": 1.05029296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5490, + "pitch": null, + "reason": null, + "target": { + "x": 1.3515625, + "y": 1.0830078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5490, + "pitch": null, + "reason": null, + "target": { + "x": 1.07958984375, + "y": 1.1710205078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5490, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5492, + "pitch": null, + "reason": null, + "target": { + "x": 1.310791015625, + "y": 1.1239013671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5492, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5493, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5493, + "pitch": null, + "reason": null, + "target": { + "x": 1.0645751953125, + "y": 1.234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5493, + "pitch": null, + "reason": null, + "target": { + "x": 1.0582275390625, + "y": 1.2724609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5493, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5494, + "pitch": null, + "reason": null, + "target": { + "x": 1.0567626953125, + "y": 1.30517578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5494, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5496, + "pitch": null, + "reason": null, + "target": { + "x": 1.0565185546875, + "y": 1.341064453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 74448897 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5496, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5496, + "pitch": null, + "reason": null, + "target": { + "x": 1.4844970703125, + "y": 1.03955078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5497, + "pitch": null, + "reason": null, + "target": { + "x": 1.2852783203125, + "y": 1.13037109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 257 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 260096, + "y": 378880, + "z": 32706 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5497, + "otherUnit": null, + "sequence": 421, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 233253, + "y": 409860, + "z": 40926 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5499, + "otherUnit": null, + "sequence": 502, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5499, + "pitch": null, + "reason": null, + "target": { + "x": 1.4427490234375, + "y": 1.0582275390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5500, + "pitch": null, + "reason": null, + "target": { + "x": 1.3221435546875, + "y": 1.140869140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5500, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5500, + "pitch": null, + "reason": null, + "target": { + "x": 1.4085693359375, + "y": 1.0748291015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5503, + "pitch": null, + "reason": null, + "target": { + "x": 1.6756591796875, + "y": 2.8006591796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5503, + "pitch": null, + "reason": null, + "target": { + "x": 1.3837890625, + "y": 1.0684814453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5503, + "pitch": null, + "reason": null, + "target": { + "x": 1.374267578125, + "y": 1.0919189453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 181664, + "y": 149407, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5504, + "otherUnit": null, + "sequence": 503, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5504, + "pitch": null, + "reason": null, + "target": { + "x": 1.3419189453125, + "y": 1.108154296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5508, + "pitch": null, + "reason": null, + "target": { + "x": 1.312744140625, + "y": 1.122802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5509, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 74186753 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5511, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5512, + "pitch": null, + "reason": null, + "target": { + "x": 1.266845703125, + "y": 1.123046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5512, + "pitch": null, + "reason": null, + "target": { + "x": 1.2340087890625, + "y": 1.0902099609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5512, + "pitch": null, + "reason": null, + "target": { + "x": 1.6346435546875, + "y": 2.8006591796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5514, + "pitch": null, + "reason": null, + "target": { + "x": 1.200439453125, + "y": 1.056640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5514, + "pitch": null, + "reason": null, + "target": { + "x": 1.4892578125, + "y": 2.8006591796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5515, + "pitch": null, + "reason": null, + "target": { + "x": 1.1275634765625, + "y": 0.98388671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5516, + "pitch": null, + "reason": null, + "target": { + "x": 1.093994140625, + "y": 0.9503173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5518, + "pitch": null, + "reason": null, + "target": { + "x": 1.061279296875, + "y": 0.9102783203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 82051074 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5518, + "userid": { + "userId": 1 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5518, + "target": { + "x": 19.25, + "y": 46.25, + "z": 4.9964599609375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5518, + "sequence": 422, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5519, + "pitch": null, + "reason": null, + "target": { + "x": 1.061279296875, + "y": 0.8438720703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5519, + "target": { + "x": 23.029541015625, + "y": 16.5953369140625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5519, + "sequence": 504, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5519, + "pitch": null, + "reason": null, + "target": { + "x": 1.2772216796875, + "y": 1.1019287109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5520, + "pitch": null, + "reason": null, + "target": { + "x": 1.061279296875, + "y": 0.8094482421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5522, + "pitch": null, + "reason": null, + "target": { + "x": 1.061279296875, + "y": 0.77587890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5522, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5522, + "pitch": null, + "reason": null, + "target": { + "x": 1.252685546875, + "y": 1.0810546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5523, + "pitch": null, + "reason": null, + "target": { + "x": 1.061279296875, + "y": 0.7423095703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 5523, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 22.5, + "y": 16.25, + "z": 4.99609375 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5523, + "sequence": 505, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5523, + "pitch": null, + "reason": null, + "target": { + "x": 1.221923828125, + "y": 1.0474853515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5525, + "pitch": null, + "reason": null, + "target": { + "x": 1.054931640625, + "y": 1.3792724609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5525, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5526, + "pitch": null, + "reason": null, + "target": { + "x": 1.027587890625, + "y": 0.7423095703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5526, + "pitch": null, + "reason": null, + "target": { + "x": 0.9940185546875, + "y": 0.7423095703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5526, + "pitch": null, + "reason": null, + "target": { + "x": 1.0615234375, + "y": 1.41943359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5526, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5526, + "pitch": null, + "reason": null, + "target": { + "x": 1.19384765625, + "y": 1.009521484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5527, + "pitch": null, + "reason": null, + "target": { + "x": 0.9595947265625, + "y": 0.7423095703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 82 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 133120, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5527, + "otherUnit": null, + "sequence": 506, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5527, + "pitch": null, + "reason": null, + "target": { + "x": 1.169921875, + "y": 0.9703369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5529, + "pitch": null, + "reason": null, + "target": { + "x": 0.923583984375, + "y": 0.7423095703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5529, + "pitch": null, + "reason": null, + "target": { + "x": 1.0804443359375, + "y": 1.4727783203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5530, + "pitch": null, + "reason": null, + "target": { + "x": 0.8564453125, + "y": 0.7423095703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5530, + "pitch": null, + "reason": null, + "target": { + "x": 1.099365234375, + "y": 1.5147705078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5530, + "pitch": null, + "reason": null, + "target": { + "x": 1.143798828125, + "y": 0.9287109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5531, + "pitch": null, + "reason": null, + "target": { + "x": 0.81640625, + "y": 0.7423095703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5531, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5531, + "pitch": null, + "reason": null, + "target": { + "x": 1.1146240234375, + "y": 0.8917236328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5533, + "pitch": null, + "reason": null, + "target": { + "x": 0.7540283203125, + "y": 0.7423095703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5533, + "pitch": null, + "reason": null, + "target": { + "x": 1.1273193359375, + "y": 1.557373046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5533, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5533, + "pitch": null, + "reason": null, + "target": { + "x": 1.0843505859375, + "y": 0.8631591796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5535, + "pitch": null, + "reason": null, + "target": { + "x": 1.042724609375, + "y": 0.8358154296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51118081, + 69468161 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5537, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 56, + "unitLink": 252 + } + ], + "addUnitTags": [ + 56623105, + 57933825, + 77594625, + 80478209, + 82313217, + 68157443 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5537, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5537, + "pitch": null, + "reason": null, + "target": { + "x": 0.9989013671875, + "y": 0.815185546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5538, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5540, + "pitch": null, + "reason": null, + "target": { + "x": 0.95263671875, + "y": 0.798095703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5541, + "pitch": null, + "reason": null, + "target": { + "x": 0.89990234375, + "y": 0.7818603515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5544, + "pitch": null, + "reason": null, + "target": { + "x": 0.8477783203125, + "y": 0.7672119140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5545, + "pitch": null, + "reason": null, + "target": { + "x": 0.79736328125, + "y": 0.7537841796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5548, + "pitch": null, + "reason": null, + "target": { + "x": 0.76171875, + "y": 0.7442626953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5549, + "pitch": null, + "reason": null, + "target": { + "x": 1.8577880859375, + "y": 1.822509765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 20, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56885249, + 57147393, + 57409537, + 58720257, + 61079553, + 62128129, + 62652417, + 64487426, + 65273859, + 66060290, + 70254593, + 72351746 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5551, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5551, + "pitch": null, + "reason": null, + "target": { + "x": 1.799072265625, + "y": 1.802734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5552, + "pitch": null, + "reason": null, + "target": { + "x": 1.34912109375, + "y": 1.663818359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5552, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5553, + "pitch": null, + "reason": null, + "target": { + "x": 1.383544921875, + "y": 1.108642578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5553, + "pitch": null, + "reason": null, + "target": { + "x": 1.4271240234375, + "y": 1.07568359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5553, + "pitch": null, + "reason": null, + "target": { + "x": 1.2513427734375, + "y": 1.6439208984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5556, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5556, + "pitch": null, + "reason": null, + "target": { + "x": 1.4541015625, + "y": 1.0440673828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5559, + "pitch": null, + "reason": null, + "target": { + "x": 2.0045166015625, + "y": 2.4346923828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5559, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5560, + "pitch": null, + "reason": null, + "target": { + "x": 1.9556884765625, + "y": 2.46728515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 55050241, + 55836673, + 56098817, + 61079553, + 70254593 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5560, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5561, + "otherUnit": null, + "sequence": 508, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5568, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 73400322 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5570, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5571, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 125318, + "y": 91388, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5571, + "otherUnit": null, + "sequence": 509, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5572, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5574, + "pitch": null, + "reason": null, + "target": { + "x": 1.9556884765625, + "y": 2.5341796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5575, + "pitch": null, + "reason": null, + "target": { + "x": 1.954833984375, + "y": 2.5806884765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5575, + "pitch": null, + "reason": null, + "target": { + "x": 1.2802734375, + "y": 1.9539794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5577, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5578, + "pitch": null, + "reason": null, + "target": { + "x": 1.9521484375, + "y": 2.6134033203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5578, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5579, + "pitch": null, + "reason": null, + "target": { + "x": 1.34912109375, + "y": 1.9254150390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 74711041 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5579, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5579, + "otherUnit": null, + "sequence": 510, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5581, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5581, + "pitch": null, + "reason": null, + "target": { + "x": 1.34912109375, + "y": 1.9254150390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5582, + "pitch": null, + "reason": null, + "target": { + "x": 1.539794921875, + "y": 3.056640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5582, + "pitch": null, + "reason": null, + "target": { + "x": 1.2802734375, + "y": 1.9864501953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5583, + "pitch": null, + "reason": null, + "target": { + "x": 1.4007568359375, + "y": 2.9808349609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5583, + "sequence": 511, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5583, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5583, + "pitch": null, + "reason": null, + "target": { + "x": 1.2802734375, + "y": 2.0421142578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5585, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5585, + "pitch": null, + "reason": null, + "target": { + "x": 1.2802734375, + "y": 2.0908203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 166475, + "y": 396706, + "z": 41155 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5586, + "otherUnit": null, + "sequence": 423, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 129304, + "y": 320623, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5586, + "otherUnit": null, + "sequence": 512, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5587, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5589, + "pitch": null, + "reason": null, + "target": { + "x": 1.34912109375, + "y": 1.975830078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5589, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5590, + "pitch": null, + "reason": null, + "target": { + "x": 1.34912109375, + "y": 2.03662109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 5590, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 21.5, + "y": 48.5, + "z": 4.99609375 + }, + "snapshotUnitLink": 475, + "snapshotUpkeepPlayerId": 0, + "tag": 41418753, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5590, + "sequence": 424, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5592, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5593, + "pitch": null, + "reason": null, + "target": { + "x": 1.47802734375, + "y": 1.014892578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5593, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 5594, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 21.5, + "y": 48.5, + "z": 4.99609375 + }, + "snapshotUnitLink": 475, + "snapshotUpkeepPlayerId": 0, + "tag": 41418753, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5594, + "sequence": 425, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5594, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5596, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.98681640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5597, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5597, + "pitch": null, + "reason": null, + "target": { + "x": 1.281982421875, + "y": 2.089599609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5597, + "pitch": null, + "reason": null, + "target": { + "x": 1.34912109375, + "y": 1.9632568359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5598, + "target": { + "x": 13.165283203125, + "y": 39.8846435546875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5598, + "sequence": 513, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5598, + "pitch": null, + "reason": null, + "target": { + "x": 1.281982421875, + "y": 2.145263671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5600, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5601, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5601, + "pitch": null, + "reason": null, + "target": { + "x": 1.34912109375, + "y": 2.005859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5604, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5605, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5607, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5608, + "pitch": null, + "reason": null, + "target": { + "x": 1.3299560546875, + "y": 2.0615234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 73138181, + 76808193 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5608, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5609, + "pitch": null, + "reason": null, + "target": { + "x": 1.2939453125, + "y": 2.0615234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5609, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5611, + "pitch": null, + "reason": null, + "target": { + "x": 1.253173828125, + "y": 2.0615234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5611, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5611, + "pitch": null, + "reason": null, + "target": { + "x": 1.3477783203125, + "y": 2.0377197265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 61865992 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5612, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5616, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5619, + "pitch": null, + "reason": null, + "target": { + "x": 1.31103515625, + "y": 2.048583984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 15, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 196608, + "y": 454656, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5623, + "otherUnit": null, + "sequence": 426, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 77070339 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5623, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5623, + "pitch": null, + "reason": null, + "target": { + "x": 1.2769775390625, + "y": 2.05615234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5624, + "pitch": null, + "reason": null, + "target": { + "x": 1.109619140625, + "y": 3.2010498046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 133120, + "y": 88064, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5626, + "otherUnit": null, + "sequence": 514, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5627, + "pitch": null, + "reason": null, + "target": { + "x": 1.207275390625, + "y": 2.3043212890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5628, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5631, + "pitch": null, + "reason": null, + "target": { + "x": 1.4481201171875, + "y": 3.1356201171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5633, + "pitch": null, + "reason": null, + "target": { + "x": 1.5643310546875, + "y": 3.0225830078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5633, + "pitch": null, + "reason": null, + "target": { + "x": 1.3311767578125, + "y": 2.99658203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5633, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5634, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5634, + "pitch": null, + "reason": null, + "target": { + "x": 1.5643310546875, + "y": 3.0225830078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5637, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5638, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 132483, + "y": 389377, + "z": 49543 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5639, + "otherUnit": null, + "sequence": 427, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5642, + "pitch": null, + "reason": null, + "target": { + "x": 1.0775146484375, + "y": 3.207275390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 8, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 56, + "unitLink": 252 + } + ], + "addUnitTags": [ + 56623105, + 57933825, + 70778883, + 77594625, + 80478209, + 82051074, + 82313217, + 84934657, + 68157443 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5642, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5644, + "pitch": null, + "reason": null, + "target": { + "x": 1.5643310546875, + "y": 3.0577392578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5644, + "pitch": null, + "reason": null, + "target": { + "x": 1.0118408203125, + "y": 3.2261962890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5644, + "otherUnit": null, + "sequence": 515, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5645, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5646, + "pitch": null, + "reason": null, + "target": { + "x": 1.5643310546875, + "y": 3.128173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5646, + "pitch": null, + "reason": null, + "target": { + "x": 0.950927734375, + "y": 3.2574462890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5646, + "sequence": 516, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5648, + "pitch": null, + "reason": null, + "target": { + "x": 0.9185791015625, + "y": 3.2835693359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5648, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.020263671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5649, + "pitch": null, + "reason": null, + "target": { + "x": 0.8897705078125, + "y": 3.30517578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5649, + "target": { + "x": 17.9427490234375, + "y": 51.4564208984375, + "z": 5.9970703125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5649, + "sequence": 428, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5652, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5653, + "pitch": null, + "reason": null, + "target": { + "x": 0.8624267578125, + "y": 3.3212890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5653, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5653, + "pitch": null, + "reason": null, + "target": { + "x": 1.5643310546875, + "y": 3.060791015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5654, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 70516738, + 81002498, + 81526785 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5657, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 217088, + "y": 159744, + "z": 40906 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5657, + "otherUnit": null, + "sequence": 517, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5657, + "pitch": null, + "reason": null, + "target": { + "x": 1.5643310546875, + "y": 3.0997314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5659, + "userid": { + "userId": 1 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5659, + "otherUnit": null, + "sequence": 429, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + }, + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 74711041, + 84148226, + 51118081, + 51380225, + 65011714, + 66846723, + 68681732, + 69468161, + 73138181, + 75235329, + 75759617, + 76021761, + 76808193, + 77332481, + 78905347, + 79167492, + 79429636 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5660, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 70516738 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5660, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5660, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5661, + "sequence": 430, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 81002498 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5663, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5664, + "sequence": 431, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5664, + "pitch": null, + "reason": null, + "target": { + "x": 1.0557861328125, + "y": 2.281005859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 81526785 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5665, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5665, + "pitch": null, + "reason": null, + "target": { + "x": 1.0557861328125, + "y": 2.337890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 79223, + "y": 357161, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5665, + "otherUnit": null, + "sequence": 518, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5667, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5667, + "pitch": null, + "reason": null, + "target": { + "x": 1.5411376953125, + "y": 3.152099609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5667, + "pitch": null, + "reason": null, + "target": { + "x": 1.0557861328125, + "y": 2.392333984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5668, + "pitch": null, + "reason": null, + "target": { + "x": 1.50439453125, + "y": 3.152099609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5668, + "target": { + "x": 10.1685791015625, + "y": 44.0181884765625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5668, + "sequence": 519, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5670, + "pitch": null, + "reason": null, + "target": { + "x": 1.467529296875, + "y": 3.152099609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5670, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5671, + "pitch": null, + "reason": null, + "target": { + "x": 1.3955078125, + "y": 3.152099609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5671, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5672, + "pitch": null, + "reason": null, + "target": { + "x": 1.357177734375, + "y": 3.152099609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5672, + "pitch": null, + "reason": null, + "target": { + "x": 1.5572509765625, + "y": 3.1314697265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5674, + "pitch": null, + "reason": null, + "target": { + "x": 1.0823974609375, + "y": 3.0439453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 150569, + "y": 393292, + "z": 40942 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5674, + "otherUnit": null, + "sequence": 432, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5675, + "pitch": null, + "reason": null, + "target": { + "x": 1.2947998046875, + "y": 3.152099609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5675, + "pitch": null, + "reason": null, + "target": { + "x": 1.2554931640625, + "y": 3.152099609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5675, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5676, + "pitch": null, + "reason": null, + "target": { + "x": 1.184814453125, + "y": 2.3267822265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5676, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5676, + "pitch": null, + "reason": null, + "target": { + "x": 1.52099609375, + "y": 3.137451171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5678, + "pitch": null, + "reason": null, + "target": { + "x": 1.146484375, + "y": 2.3568115234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5678, + "pitch": null, + "reason": null, + "target": { + "x": 0.8255615234375, + "y": 3.3363037109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5678, + "target": { + "x": 18.6094970703125, + "y": 47.9542236328125, + "z": 4.9976806640625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5678, + "sequence": 433, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5679, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5679, + "pitch": null, + "reason": null, + "target": { + "x": 1.474853515625, + "y": 3.1412353515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5680, + "pitch": null, + "reason": null, + "target": { + "x": 1.1187744140625, + "y": 2.3763427734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5680, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5682, + "pitch": null, + "reason": null, + "target": { + "x": 1.0850830078125, + "y": 2.3995361328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 75497473 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5682, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5682, + "pitch": null, + "reason": null, + "target": { + "x": 1.4312744140625, + "y": 3.1439208984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5683, + "pitch": null, + "reason": null, + "target": { + "x": 1.050537109375, + "y": 2.423583984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5683, + "pitch": null, + "reason": null, + "target": { + "x": 1.390625, + "y": 3.1458740234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 8, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 68419585, + 69206018, + 62914563, + 66322433, + 66584577, + 67371009, + 71565319, + 82837505, + 83099649, + 83361793 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5686, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5686, + "target": { + "x": 27.609375, + "y": 16.1312255859375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5686, + "sequence": 520, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5686, + "pitch": null, + "reason": null, + "target": { + "x": 1.3436279296875, + "y": 3.1480712890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5687, + "pitch": null, + "reason": null, + "target": { + "x": 1.2960205078125, + "y": 3.1502685546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5690, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5690, + "otherUnit": null, + "sequence": 521, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5690, + "pitch": null, + "reason": null, + "target": { + "x": 1.2630615234375, + "y": 3.1517333984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5693, + "sequence": 522, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51642369 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5694, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 252 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 157696, + "y": 411648, + "z": 47178 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5694, + "otherUnit": null, + "sequence": 434, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5696, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 4, + "unitLink": 121 + } + ], + "addUnitTags": [ + 83623937 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5698, + "userid": { + "userId": 2 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 231660, + "y": 137683, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5698, + "otherUnit": null, + "sequence": 523, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5700, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5704, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5704, + "pitch": null, + "reason": null, + "target": { + "x": 0.9278564453125, + "y": 2.427978515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5705, + "pitch": null, + "reason": null, + "target": { + "x": 0.9278564453125, + "y": 2.4871826171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 124675, + "y": 409470, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5706, + "otherUnit": null, + "sequence": 435, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5706, + "target": { + "x": 7.259521484375, + "y": 46.4334716796875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5706, + "sequence": 524, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5706, + "pitch": null, + "reason": null, + "target": { + "x": 0.9278564453125, + "y": 2.5382080078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5708, + "pitch": null, + "reason": null, + "target": { + "x": 0.9383544921875, + "y": 2.563720703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5708, + "pitch": null, + "reason": null, + "target": { + "x": 0.9278564453125, + "y": 2.5718994140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5709, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5709, + "pitch": null, + "reason": null, + "target": { + "x": 0.9383544921875, + "y": 2.563720703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5711, + "pitch": null, + "reason": null, + "target": { + "x": 0.9775390625, + "y": 2.563720703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 69206018 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5712, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5712, + "pitch": null, + "reason": null, + "target": { + "x": 1.603515625, + "y": 0.870361328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5715, + "target": { + "x": 19.345703125, + "y": 49.1923828125, + "z": 5.4593505859375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5715, + "sequence": 436, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5717, + "target": { + "x": 19.718017578125, + "y": 48.7872314453125, + "z": 5.2650146484375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5717, + "sequence": 437, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5722, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5722, + "pitch": null, + "reason": null, + "target": { + "x": 1.0933837890625, + "y": 3.25 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5722, + "pitch": null, + "reason": null, + "target": { + "x": 1.5977783203125, + "y": 3.396728515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5723, + "pitch": null, + "reason": null, + "target": { + "x": 0.9700927734375, + "y": 2.563720703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5724, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5727, + "target": { + "x": 14.706298828125, + "y": 50.3048095703125, + "z": 5.9951171875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5727, + "sequence": 438, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5732, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5734, + "pitch": null, + "reason": null, + "target": { + "x": 1.6031494140625, + "y": 3.3594970703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5734, + "target": { + "x": 20.074951171875, + "y": 48.8948974609375, + "z": 5.2027587890625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5734, + "sequence": 439, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5735, + "pitch": null, + "reason": null, + "target": { + "x": 1.109130859375, + "y": 3.219970703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5737, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5738, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2020263671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5739, + "target": { + "x": 13.999755859375, + "y": 52.6998291015625, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5739, + "sequence": 440, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5739, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2020263671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 233472, + "y": 143360, + "z": 40906 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5745, + "otherUnit": null, + "sequence": 531, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 5746, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 9.75, + "y": 51.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 60030978, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5746, + "sequence": 441, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5747, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5750, + "pitch": null, + "reason": null, + "target": { + "x": 0.9306640625, + "y": 3.0439453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5750, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5752, + "pitch": null, + "reason": null, + "target": { + "x": 1.078369140625, + "y": 3.2139892578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5752, + "pitch": null, + "reason": null, + "target": { + "x": 1.0423583984375, + "y": 3.2266845703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5752, + "pitch": null, + "reason": null, + "target": { + "x": 0.8580322265625, + "y": 3.0439453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5752, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5753, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 4, + "unitLink": 121 + } + ], + "addUnitTags": [ + 85458945 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5753, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 5753, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 11.25, + "y": 52.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 111, + "snapshotUpkeepPlayerId": 1, + "tag": 60817410, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5753, + "sequence": 442, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5753, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5754, + "pitch": null, + "reason": null, + "target": { + "x": 0.8826904296875, + "y": 3.2896728515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5756, + "pitch": null, + "reason": null, + "target": { + "x": 0.7889404296875, + "y": 3.322021484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5756, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5757, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.249267578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5757, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5758, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.28125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5758, + "pitch": null, + "reason": null, + "target": { + "x": 0.8580322265625, + "y": 3.195556640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 74973188, + 84672513 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5760, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 170732, + "y": 141034, + "z": 40942 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5761, + "otherUnit": null, + "sequence": 532, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5764, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5765, + "pitch": null, + "reason": null, + "target": { + "x": 0.7567138671875, + "y": 3.3475341796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5765, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5767, + "target": { + "x": 28.2215576171875, + "y": 17.90185546875, + "z": 4.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5767, + "sequence": 533, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5767, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2374267578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 4, + "unitLink": 121 + } + ], + "addUnitTags": [ + 83623937 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5768, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5768, + "pitch": null, + "reason": null, + "target": { + "x": 0.73486328125, + "y": 3.37451171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5768, + "target": { + "x": 12.0364990234375, + "y": 49.8165283203125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5768, + "sequence": 443, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 5771, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 27.25, + "y": 18.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 45, + "snapshotUpkeepPlayerId": 2, + "tag": 63963138, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5771, + "sequence": 534, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5771, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2742919921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5772, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5773, + "pitch": null, + "reason": null, + "target": { + "x": 0.8580322265625, + "y": 3.160888671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5775, + "pitch": null, + "reason": null, + "target": { + "x": 1.000244140625, + "y": 2.99658203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5775, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 2.68017578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5776, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3397216796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5776, + "pitch": null, + "reason": null, + "target": { + "x": 1.107666015625, + "y": 2.8890380859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5776, + "target": { + "x": 5, + "y": 49.6265869140625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5776, + "sequence": 535, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5776, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 2.7208251953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5778, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5778, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 2.7706298828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5779, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5779, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 2.805419921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5780, + "target": { + "x": 5, + "y": 50.8643798828125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5780, + "sequence": 536, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5782, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5783, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 2.8739013671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 387 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5783, + "otherUnit": null, + "sequence": 537, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5783, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 2.9261474609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 55785, + "y": 435849, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5784, + "otherUnit": null, + "sequence": 538, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5784, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 2.9771728515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 86245377, + 86507521 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5786, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5786, + "otherUnit": null, + "sequence": 444, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5786, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 3.0328369140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5786, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3106689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 86245377 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5787, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5787, + "target": { + "x": 7.4146728515625, + "y": 54.2491455078125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5787, + "sequence": 539, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5789, + "sequence": 445, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + }, + { + "count": 18, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 73400322, + 66322433, + 82837505, + 83361793, + 50855937, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705, + 63438849, + 71041025, + 73662467, + 78381058 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5790, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 86507521 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5791, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5791, + "target": { + "x": 7.6214599609375, + "y": 54.0133056640625, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5791, + "sequence": 543, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5794, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5795, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5795, + "pitch": null, + "reason": null, + "target": { + "x": 1.565185546875, + "y": 1.048828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 145890, + "y": 411999, + "z": 49131 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5795, + "otherUnit": null, + "sequence": 446, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5797, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5799, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.280517578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5799, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5801, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2373046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5801, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5801, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 3.0908203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5802, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 3.1453857421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5804, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 3.194091796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5804, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5805, + "target": { + "x": 7.7294921875, + "y": 56.9603271484375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5805, + "sequence": 551, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5808, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5808, + "target": { + "x": 7.8802490234375, + "y": 56.712158203125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5808, + "sequence": 552, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5809, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5810, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5810, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 4, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5810, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5812, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5812, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2738037109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 67895299, + 87031809, + 87556097 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5813, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5813, + "otherUnit": null, + "sequence": 447, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 67895299 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5815, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5816, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5816, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2408447265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5817, + "sequence": 448, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5819, + "pitch": null, + "reason": null, + "target": { + "x": 1.60302734375, + "y": 1.041015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 87031809 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5819, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 73400322 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5820, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5820, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 3.2625732421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5820, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 3.2950439453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5821, + "pitch": null, + "reason": null, + "target": { + "x": 0.752197265625, + "y": 3.341552734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 88064, + "y": 452608, + "z": 49104 + }, + "snapshotUnitLink": 122, + "snapshotUpkeepPlayerId": 1, + "tag": 49807361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5821, + "otherUnit": null, + "sequence": 449, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5824, + "pitch": null, + "reason": null, + "target": { + "x": 0.7828369140625, + "y": 3.2860107421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5827, + "pitch": null, + "reason": null, + "target": { + "x": 0.7889404296875, + "y": 3.23193359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 57671682, + 73662467, + 78381058 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5827, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5828, + "pitch": null, + "reason": null, + "target": { + "x": 0.7835693359375, + "y": 3.166748046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5830, + "pitch": null, + "reason": null, + "target": { + "x": 0.77685546875, + "y": 3.103759765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5831, + "pitch": null, + "reason": null, + "target": { + "x": 0.7738037109375, + "y": 3.072265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5834, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 3.348388671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5835, + "pitch": null, + "reason": null, + "target": { + "x": 0.840576171875, + "y": 3.0225830078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5835, + "pitch": null, + "reason": null, + "target": { + "x": 0.7506103515625, + "y": 3.043701171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5835, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.284912109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5835, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 3.4422607421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5836, + "pitch": null, + "reason": null, + "target": { + "x": 0.7198486328125, + "y": 3.0565185546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5836, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.130126953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5836, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5836, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5838, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.0794677734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 59685, + "y": 409019, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5838, + "otherUnit": null, + "sequence": 450, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5839, + "pitch": null, + "reason": null, + "target": { + "x": 0.6995849609375, + "y": 3.0887451171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5839, + "target": { + "x": 5.6282958984375, + "y": 61.7745361328125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5839, + "sequence": 558, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5841, + "pitch": null, + "reason": null, + "target": { + "x": 0.7115478515625, + "y": 3.203369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5842, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5842, + "pitch": null, + "reason": null, + "target": { + "x": 0.7369384765625, + "y": 3.167724609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5843, + "target": { + "x": 6.7315673828125, + "y": 51.7158203125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5843, + "sequence": 451, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5843, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5845, + "pitch": null, + "reason": null, + "target": { + "x": 0.840576171875, + "y": 3.0753173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5845, + "pitch": null, + "reason": null, + "target": { + "x": 0.766845703125, + "y": 3.1258544921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5846, + "pitch": null, + "reason": null, + "target": { + "x": 0.840576171875, + "y": 3.1417236328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5846, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5846, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.2027587890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5846, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5846, + "pitch": null, + "reason": null, + "target": { + "x": 0.796630859375, + "y": 3.0841064453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5847, + "pitch": null, + "reason": null, + "target": { + "x": 0.8070068359375, + "y": 3.17529296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5847, + "target": { + "x": 6.182373046875, + "y": 58.17431640625, + "z": 6.047607421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5847, + "sequence": 452, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5847, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.275390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5847, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5849, + "pitch": null, + "reason": null, + "target": { + "x": 0.7694091796875, + "y": 3.212890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5849, + "pitch": null, + "reason": null, + "target": { + "x": 0.8216552734375, + "y": 3.0521240234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5850, + "pitch": null, + "reason": null, + "target": { + "x": 0.7237548828125, + "y": 3.258544921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5850, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 48563, + "y": 461309, + "z": 49106 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5851, + "otherUnit": null, + "sequence": 453, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 87818242, + 88080385 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5851, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 87818242, + 88080385 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5851, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5851, + "target": { + "x": 12.1036376953125, + "y": 59.2120361328125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5851, + "sequence": 560, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5853, + "pitch": null, + "reason": null, + "target": { + "x": 0.692138671875, + "y": 3.1202392578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5853, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 88604673, + 88866817 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5854, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5856, + "target": { + "x": 5.959716796875, + "y": 56.455322265625, + "z": 5.994140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5856, + "sequence": 454, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5856, + "target": { + "x": 12.4986572265625, + "y": 59.9681396484375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5856, + "sequence": 561, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5856, + "pitch": null, + "reason": null, + "target": { + "x": 0.820556640625, + "y": 3.0902099609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 89391105, + 89653249 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5857, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5857, + "pitch": null, + "reason": null, + "target": { + "x": 0.8028564453125, + "y": 3.123046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5858, + "target": { + "x": 12.2861328125, + "y": 60.0948486328125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5858, + "sequence": 562, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5860, + "pitch": null, + "reason": null, + "target": { + "x": 0.7813720703125, + "y": 3.16064453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + }, + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 87818242, + 88080385, + 88604673, + 88866817, + 50855937, + 51642369, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53215233, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63438849, + 73662467, + 78381058 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5861, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5861, + "target": { + "x": 13.4937744140625, + "y": 62.1544189453125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5861, + "sequence": 563, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5861, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 3.5096435546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5861, + "pitch": null, + "reason": null, + "target": { + "x": 0.7568359375, + "y": 3.202392578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5864, + "target": { + "x": 14.408447265625, + "y": 62.117919921875, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5864, + "sequence": 564, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5864, + "pitch": null, + "reason": null, + "target": { + "x": 0.7335205078125, + "y": 3.2418212890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5865, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5869, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5869, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5872, + "target": { + "x": 13.3203125, + "y": 58.366455078125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5872, + "sequence": 455, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5872, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5873, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.1531982421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5873, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5875, + "target": { + "x": 13.300048828125, + "y": 57.6156005859375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5875, + "sequence": 456, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5875, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 3.5455322265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5876, + "pitch": null, + "reason": null, + "target": { + "x": 0.7237548828125, + "y": 3.3114013671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5876, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.187744140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5876, + "target": { + "x": 20.9986572265625, + "y": 63.9998779296875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5876, + "sequence": 565, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5876, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 3.640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5877, + "pitch": null, + "reason": null, + "target": { + "x": 0.7237548828125, + "y": 3.3441162109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5877, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5877, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5879, + "pitch": null, + "reason": null, + "target": { + "x": 0.7237548828125, + "y": 3.388916015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5879, + "pitch": null, + "reason": null, + "target": { + "x": 0.6934814453125, + "y": 3.2462158203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5880, + "pitch": null, + "reason": null, + "target": { + "x": 0.7039794921875, + "y": 3.299560546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5882, + "pitch": null, + "reason": null, + "target": { + "x": 0.7130126953125, + "y": 3.3294677734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5882, + "target": { + "x": 14.1768798828125, + "y": 57.3218994140625, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5882, + "sequence": 457, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5882, + "pitch": null, + "reason": null, + "target": { + "x": 1.09423828125, + "y": 0.947265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5883, + "pitch": null, + "reason": null, + "target": { + "x": 0.7413330078125, + "y": 3.4169921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5883, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5883, + "pitch": null, + "reason": null, + "target": { + "x": 0.7237548828125, + "y": 3.2755126953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5884, + "pitch": null, + "reason": null, + "target": { + "x": 0.811767578125, + "y": 3.4169921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5884, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5884, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5886, + "pitch": null, + "reason": null, + "target": { + "x": 0.84619140625, + "y": 3.4169921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5886, + "pitch": null, + "reason": null, + "target": { + "x": 0.721923828125, + "y": 3.3707275390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5886, + "target": { + "x": 14.3084716796875, + "y": 57.6676025390625, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5886, + "sequence": 458, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5886, + "pitch": null, + "reason": null, + "target": { + "x": 0.72509765625, + "y": 3.310302734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5887, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3670654296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5888, + "pitch": null, + "reason": null, + "target": { + "x": 0.73095703125, + "y": 3.4127197265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5890, + "pitch": null, + "reason": null, + "target": { + "x": 0.8525390625, + "y": 3.4744873046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5890, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 140 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5890, + "otherUnit": null, + "sequence": 566, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5890, + "pitch": null, + "reason": null, + "target": { + "x": 0.7396240234375, + "y": 3.3382568359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5891, + "pitch": null, + "reason": null, + "target": { + "x": 0.8525390625, + "y": 3.530517578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5891, + "pitch": null, + "reason": null, + "target": { + "x": 0.947021484375, + "y": 3.59228515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5891, + "pitch": null, + "reason": null, + "target": { + "x": 0.9144287109375, + "y": 3.5760498046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 68 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5891, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 68 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 2 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5891, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5892, + "pitch": null, + "reason": null, + "target": { + "x": 0.7392578125, + "y": 3.4442138671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5892, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5892, + "pitch": null, + "reason": null, + "target": { + "x": 0.763671875, + "y": 3.3623046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 5894, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 11.7808837890625, + "y": 56.3427734375, + "z": 7.869140625 + }, + "snapshotUnitLink": 76, + "snapshotUpkeepPlayerId": 2, + "tag": 82575361, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5894, + "sequence": 459, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 142 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5894, + "otherUnit": null, + "sequence": 567, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 65 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5895, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 65 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 2 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5895, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5895, + "pitch": null, + "reason": null, + "target": { + "x": 0.78662109375, + "y": 3.3924560546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5897, + "pitch": null, + "reason": null, + "target": { + "x": 0.76318359375, + "y": 3.477294921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 68 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5897, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5898, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5898, + "pitch": null, + "reason": null, + "target": { + "x": 0.8082275390625, + "y": 3.4322509765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 148 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 141312, + "y": 124928, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5899, + "otherUnit": null, + "sequence": 568, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5901, + "target": { + "x": 17.37060546875, + "y": 57.825927734375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5901, + "sequence": 460, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5901, + "pitch": null, + "reason": null, + "target": { + "x": 0.827880859375, + "y": 3.474609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5903, + "pitch": null, + "reason": null, + "target": { + "x": 0.873046875, + "y": 3.5670166015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 65 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5903, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5903, + "pitch": null, + "reason": null, + "target": { + "x": 0.8406982421875, + "y": 3.5035400390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5905, + "pitch": null, + "reason": null, + "target": { + "x": 0.835205078125, + "y": 3.5552978515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5906, + "pitch": null, + "reason": null, + "target": { + "x": 0.7899169921875, + "y": 3.538818359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 141 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 141312, + "y": 108544, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5908, + "otherUnit": null, + "sequence": 569, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5909, + "pitch": null, + "reason": null, + "target": { + "x": 0.7547607421875, + "y": 3.5264892578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5909, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5910, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51642369, + 51904513, + 63438849 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5913, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5913, + "pitch": null, + "reason": null, + "target": { + "x": 0.8447265625, + "y": 3.63623046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 174563, + "y": 524287, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5914, + "otherUnit": null, + "sequence": 570, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5917, + "pitch": null, + "reason": null, + "target": { + "x": 0.781982421875, + "y": 3.3516845703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5917, + "pitch": null, + "reason": null, + "target": { + "x": 0.781982421875, + "y": 3.2156982421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5918, + "pitch": null, + "reason": null, + "target": { + "x": 0.781982421875, + "y": 3.1517333984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 79872, + "y": 481280, + "z": 49104 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 81788930, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5918, + "otherUnit": null, + "sequence": 461, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5918, + "pitch": null, + "reason": null, + "target": { + "x": 0.9212646484375, + "y": 3.63623046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5918, + "target": { + "x": 24.7132568359375, + "y": 63.9998779296875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5918, + "sequence": 571, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5920, + "pitch": null, + "reason": null, + "target": { + "x": 0.89892578125, + "y": 3.530517578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5920, + "pitch": null, + "reason": null, + "target": { + "x": 0.8028564453125, + "y": 3.54931640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5920, + "pitch": null, + "reason": null, + "target": { + "x": 0.9862060546875, + "y": 3.63623046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5921, + "pitch": null, + "reason": null, + "target": { + "x": 0.9661865234375, + "y": 3.530517578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5921, + "pitch": null, + "reason": null, + "target": { + "x": 0.8438720703125, + "y": 3.5736083984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5924, + "pitch": null, + "reason": null, + "target": { + "x": 0.9805908203125, + "y": 3.59619140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5924, + "pitch": null, + "reason": null, + "target": { + "x": 0.7939453125, + "y": 3.18701171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5924, + "pitch": null, + "reason": null, + "target": { + "x": 0.8709716796875, + "y": 3.59375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5924, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5924, + "pitch": null, + "reason": null, + "target": { + "x": 0.85986328125, + "y": 3.5303955078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5925, + "pitch": null, + "reason": null, + "target": { + "x": 0.9805908203125, + "y": 3.63134765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5927, + "pitch": null, + "reason": null, + "target": { + "x": 0.899169921875, + "y": 3.620361328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5927, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5928, + "pitch": null, + "reason": null, + "target": { + "x": 0.7969970703125, + "y": 3.221435546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 78381058 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5928, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5928, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5929, + "pitch": null, + "reason": null, + "target": { + "x": 0.924560546875, + "y": 3.6429443359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5929, + "pitch": null, + "reason": null, + "target": { + "x": 0.896240234375, + "y": 3.5433349609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5931, + "pitch": null, + "reason": null, + "target": { + "x": 0.7901611328125, + "y": 3.282958984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5931, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5932, + "pitch": null, + "reason": null, + "target": { + "x": 0.79248046875, + "y": 3.34375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5932, + "pitch": null, + "reason": null, + "target": { + "x": 0.9561767578125, + "y": 3.6678466796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5932, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5932, + "pitch": null, + "reason": null, + "target": { + "x": 0.921875, + "y": 3.5665283203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5934, + "pitch": null, + "reason": null, + "target": { + "x": 0.80078125, + "y": 3.37744140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5935, + "pitch": null, + "reason": null, + "target": { + "x": 0.8201904296875, + "y": 3.4412841796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5935, + "pitch": null, + "reason": null, + "target": { + "x": 0.9915771484375, + "y": 3.689453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5935, + "pitch": null, + "reason": null, + "target": { + "x": 0.9476318359375, + "y": 3.5941162109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5936, + "pitch": null, + "reason": null, + "target": { + "x": 0.8404541015625, + "y": 3.4990234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5936, + "pitch": null, + "reason": null, + "target": { + "x": 1.020263671875, + "y": 3.7044677734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5938, + "pitch": null, + "reason": null, + "target": { + "x": 0.8525390625, + "y": 3.52978515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5938, + "pitch": null, + "reason": null, + "target": { + "x": 0.72802734375, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5939, + "pitch": null, + "reason": null, + "target": { + "x": 0.8675537109375, + "y": 3.56201171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5939, + "pitch": null, + "reason": null, + "target": { + "x": 0.784912109375, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5939, + "pitch": null, + "reason": null, + "target": { + "x": 0.973388671875, + "y": 3.623291015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5942, + "pitch": null, + "reason": null, + "target": { + "x": 0.8900146484375, + "y": 3.6002197265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5943, + "pitch": null, + "reason": null, + "target": { + "x": 1.0157470703125, + "y": 3.6441650390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5943, + "pitch": null, + "reason": null, + "target": { + "x": 1.0494384765625, + "y": 3.6441650390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5943, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x05" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5943, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5944, + "pitch": null, + "reason": null, + "target": { + "x": 1.0870361328125, + "y": 3.6441650390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5944, + "pitch": null, + "reason": null, + "target": { + "x": 0.91845703125, + "y": 3.6376953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5946, + "pitch": null, + "reason": null, + "target": { + "x": 1.1246337890625, + "y": 3.6441650390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 5949, + "target": { + "x": 17.3878173828125, + "y": 13.092529296875, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5949, + "sequence": 572, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5950, + "pitch": null, + "reason": null, + "target": { + "x": 1.009765625, + "y": 3.6346435546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5953, + "pitch": null, + "reason": null, + "target": { + "x": 1.0408935546875, + "y": 3.6373291015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 141 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 141312, + "y": 104448, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5955, + "otherUnit": null, + "sequence": 573, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 53215233, + 57671682, + 73662467 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5957, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5957, + "pitch": null, + "reason": null, + "target": { + "x": 1.078125, + "y": 3.640380859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5958, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5960, + "pitch": null, + "reason": null, + "target": { + "x": 1.1136474609375, + "y": 3.6431884765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5961, + "pitch": null, + "reason": null, + "target": { + "x": 1.0623779296875, + "y": 3.7296142578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5962, + "pitch": null, + "reason": null, + "target": { + "x": 1.093505859375, + "y": 3.74072265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5962, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5964, + "pitch": null, + "reason": null, + "target": { + "x": 1.12353515625, + "y": 3.7509765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5965, + "pitch": null, + "reason": null, + "target": { + "x": 1.06201171875, + "y": 3.7618408203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 215918, + "y": 524287, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5966, + "otherUnit": null, + "sequence": 574, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5968, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5969, + "pitch": null, + "reason": null, + "target": { + "x": 1.109619140625, + "y": 3.7618408203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5970, + "pitch": null, + "reason": null, + "target": { + "x": 1.165283203125, + "y": 3.7618408203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5970, + "otherUnit": null, + "sequence": 575, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5972, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5972, + "pitch": null, + "reason": null, + "target": { + "x": 1.2186279296875, + "y": 3.7618408203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5973, + "pitch": null, + "reason": null, + "target": { + "x": 0.94775390625, + "y": 3.656494140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5973, + "pitch": null, + "reason": null, + "target": { + "x": 1.2569580078125, + "y": 3.7618408203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 5973, + "sequence": 576, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5975, + "pitch": null, + "reason": null, + "target": { + "x": 0.986083984375, + "y": 3.677490234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5975, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5976, + "pitch": null, + "reason": null, + "target": { + "x": 1.1685791015625, + "y": 3.6441650390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 221853, + "y": 524287, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5976, + "otherUnit": null, + "sequence": 577, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5977, + "pitch": null, + "reason": null, + "target": { + "x": 1.2037353515625, + "y": 3.6441650390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5977, + "pitch": null, + "reason": null, + "target": { + "x": 1.0152587890625, + "y": 3.6954345703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5977, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5979, + "pitch": null, + "reason": null, + "target": { + "x": 1.23974609375, + "y": 3.6441650390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5979, + "pitch": null, + "reason": null, + "target": { + "x": 1.0858154296875, + "y": 3.7374267578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5980, + "pitch": null, + "reason": null, + "target": { + "x": 1.28857421875, + "y": 3.6441650390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5980, + "pitch": null, + "reason": null, + "target": { + "x": 1.156494140625, + "y": 3.7650146484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 6, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 53248, + "y": 454656, + "z": 49094 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5980, + "otherUnit": null, + "sequence": 463, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5980, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5983, + "pitch": null, + "reason": null, + "target": { + "x": 1.1904296875, + "y": 3.7835693359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5983, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5983, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5984, + "pitch": null, + "reason": null, + "target": { + "x": 1.223388671875, + "y": 3.8006591796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5984, + "pitch": null, + "reason": null, + "target": { + "x": 1.1485595703125, + "y": 3.64404296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 5986, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5987, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5987, + "pitch": null, + "reason": null, + "target": { + "x": 1.180419921875, + "y": 3.64404296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 223232, + "y": 452608, + "z": 40912 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 76546049, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5988, + "otherUnit": null, + "sequence": 464, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5990, + "pitch": null, + "reason": null, + "target": { + "x": 1.22119140625, + "y": 3.64404296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 224582, + "y": 437938, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 5992, + "otherUnit": null, + "sequence": 465, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5992, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 5992, + "pitch": null, + "reason": null, + "target": { + "x": 1.263671875, + "y": 3.64404296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5994, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 74711041, + 76021761 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 5999, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 210944, + "y": 423936, + "z": 40912 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 60555265, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6001, + "otherUnit": null, + "sequence": 466, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6003, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6005, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.3189697265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 212653, + "y": 462949, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6009, + "otherUnit": null, + "sequence": 467, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6012, + "pitch": null, + "reason": null, + "target": { + "x": 1.3309326171875, + "y": 3.6441650390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6013, + "pitch": null, + "reason": null, + "target": { + "x": 1.40380859375, + "y": 3.6441650390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6014, + "pitch": null, + "reason": null, + "target": { + "x": 1.4405517578125, + "y": 3.680908203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 77332481, + 79167492, + 81002499 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6014, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6016, + "pitch": null, + "reason": null, + "target": { + "x": 1.46142578125, + "y": 3.720947265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6016, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6016, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6017, + "pitch": null, + "reason": null, + "target": { + "x": 1.295654296875, + "y": 3.64453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6018, + "pitch": null, + "reason": null, + "target": { + "x": 1.7279052734375, + "y": 1.114013671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6018, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6018, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6018, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 239616, + "y": 436224, + "z": 40912 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 81264642, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6020, + "otherUnit": null, + "sequence": 468, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 82 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 208896, + "y": 108544, + "z": 40912 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10747905, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6021, + "otherUnit": null, + "sequence": 579, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6021, + "pitch": null, + "reason": null, + "target": { + "x": 1.3310546875, + "y": 3.655517578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6024, + "pitch": null, + "reason": null, + "target": { + "x": 1.3685302734375, + "y": 3.6729736328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6025, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6027, + "pitch": null, + "reason": null, + "target": { + "x": 1.6466064453125, + "y": 3.4781494140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 82051074 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6027, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6027, + "pitch": null, + "reason": null, + "target": { + "x": 1.409912109375, + "y": 3.694091796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 210297, + "y": 468283, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6029, + "otherUnit": null, + "sequence": 469, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 82313217 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6029, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6029, + "pitch": null, + "reason": null, + "target": { + "x": 1.4508056640625, + "y": 3.71533203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6031, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6032, + "pitch": null, + "reason": null, + "target": { + "x": 1.6964111328125, + "y": 1.0909423828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6032, + "otherUnit": null, + "sequence": 580, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6033, + "pitch": null, + "reason": null, + "target": { + "x": 1.6568603515625, + "y": 1.0526123046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6033, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6035, + "pitch": null, + "reason": null, + "target": { + "x": 1.5037841796875, + "y": 3.76416015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6035, + "pitch": null, + "reason": null, + "target": { + "x": 1.632568359375, + "y": 1.030029296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6036, + "pitch": null, + "reason": null, + "target": { + "x": 1.542236328125, + "y": 3.802490234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6036, + "pitch": null, + "reason": null, + "target": { + "x": 1.6058349609375, + "y": 1.003662109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 62390277, + 79953922, + 81526786, + 87293954, + 87556097 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6036, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6036, + "pitch": null, + "reason": null, + "target": { + "x": 1.555908203125, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6036, + "sequence": 581, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6036, + "pitch": null, + "reason": null, + "target": { + "x": 1.5025634765625, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6037, + "pitch": null, + "reason": null, + "target": { + "x": 1.556640625, + "y": 3.8377685546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6037, + "pitch": null, + "reason": null, + "target": { + "x": 1.459716796875, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6039, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6039, + "pitch": null, + "reason": null, + "target": { + "x": 1.4051513671875, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6040, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6040, + "pitch": null, + "reason": null, + "target": { + "x": 1.308837890625, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 103795, + "y": 140903, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6042, + "otherUnit": null, + "sequence": 582, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6042, + "pitch": null, + "reason": null, + "target": { + "x": 1.2554931640625, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6042, + "pitch": null, + "reason": null, + "target": { + "x": 1.4769287109375, + "y": 3.738525390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6043, + "pitch": null, + "reason": null, + "target": { + "x": 1.5948486328125, + "y": 3.48046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6044, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6044, + "pitch": null, + "reason": null, + "target": { + "x": 1.4976806640625, + "y": 3.7640380859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6046, + "pitch": null, + "reason": null, + "target": { + "x": 1.42822265625, + "y": 3.820556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6047, + "target": { + "x": 26.3297119140625, + "y": 63.9998779296875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6047, + "sequence": 583, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6047, + "pitch": null, + "reason": null, + "target": { + "x": 1.42822265625, + "y": 3.8553466796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6047, + "pitch": null, + "reason": null, + "target": { + "x": 1.5233154296875, + "y": 3.7960205078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6050, + "sequence": 584, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6050, + "pitch": null, + "reason": null, + "target": { + "x": 1.5487060546875, + "y": 3.827880859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6051, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 4, + "unitLink": 121 + } + ], + "addUnitTags": [ + 85458945 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6053, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6053, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6054, + "pitch": null, + "reason": null, + "target": { + "x": 1.588623046875, + "y": 3.8240966796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6054, + "target": { + "x": 28.1219482421875, + "y": 63.9998779296875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6054, + "sequence": 585, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6055, + "pitch": null, + "reason": null, + "target": { + "x": 1.626953125, + "y": 3.7857666015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6055, + "target": { + "x": 30.1173095703125, + "y": 63.244873046875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6055, + "sequence": 586, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6057, + "pitch": null, + "reason": null, + "target": { + "x": 1.661376953125, + "y": 3.7513427734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6058, + "pitch": null, + "reason": null, + "target": { + "x": 1.7125244140625, + "y": 3.680908203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6058, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6059, + "pitch": null, + "reason": null, + "target": { + "x": 1.7125244140625, + "y": 3.645751953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6059, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6061, + "pitch": null, + "reason": null, + "target": { + "x": 1.7125244140625, + "y": 3.6097412109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6062, + "pitch": null, + "reason": null, + "target": { + "x": 1.7125244140625, + "y": 3.5457763671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6062, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6062, + "pitch": null, + "reason": null, + "target": { + "x": 1.42822265625, + "y": 3.7833251953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6062, + "pitch": null, + "reason": null, + "target": { + "x": 1.42822265625, + "y": 3.72998046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6062, + "pitch": null, + "reason": null, + "target": { + "x": 1.5860595703125, + "y": 3.811279296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6063, + "pitch": null, + "reason": null, + "target": { + "x": 1.7125244140625, + "y": 3.51220703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6063, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6063, + "pitch": null, + "reason": null, + "target": { + "x": 1.42822265625, + "y": 3.6766357421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6065, + "pitch": null, + "reason": null, + "target": { + "x": 1.7125244140625, + "y": 3.4674072265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6065, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6065, + "pitch": null, + "reason": null, + "target": { + "x": 1.42822265625, + "y": 3.630126953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6065, + "pitch": null, + "reason": null, + "target": { + "x": 1.61376953125, + "y": 3.771484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6066, + "pitch": null, + "reason": null, + "target": { + "x": 1.7125244140625, + "y": 3.4010009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 62390277, + 79953922, + 87293954 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6066, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6066, + "otherUnit": null, + "sequence": 470, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6068, + "pitch": null, + "reason": null, + "target": { + "x": 1.7125244140625, + "y": 3.3673095703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 62390277 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6068, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 6068, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 27.25, + "y": 55.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 0, + "targetUnitFlags": 175, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6068, + "sequence": 587, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6068, + "pitch": null, + "reason": null, + "target": { + "x": 1.63134765625, + "y": 3.7352294921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6069, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.3599853515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6069, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6069, + "pitch": null, + "reason": null, + "target": { + "x": 1.64697265625, + "y": 3.692138671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6070, + "sequence": 471, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 79953922 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6072, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6072, + "pitch": null, + "reason": null, + "target": { + "x": 1.66015625, + "y": 3.6451416015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6073, + "sequence": 472, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6073, + "otherUnit": null, + "sequence": 588, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6073, + "pitch": null, + "reason": null, + "target": { + "x": 1.6715087890625, + "y": 3.595703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 87293954 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6074, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6076, + "pitch": null, + "reason": null, + "target": { + "x": 1.6815185546875, + "y": 3.545654296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6077, + "pitch": null, + "reason": null, + "target": { + "x": 1.69091796875, + "y": 3.494140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6080, + "pitch": null, + "reason": null, + "target": { + "x": 1.7125244140625, + "y": 3.313720703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6080, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.4390869140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6080, + "pitch": null, + "reason": null, + "target": { + "x": 1.078125, + "y": 0.8988037109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6080, + "pitch": null, + "reason": null, + "target": { + "x": 1.7000732421875, + "y": 3.4407958984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6081, + "pitch": null, + "reason": null, + "target": { + "x": 1.7125244140625, + "y": 3.2576904296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6081, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6081, + "pitch": null, + "reason": null, + "target": { + "x": 1.47021484375, + "y": 3.5811767578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6081, + "pitch": null, + "reason": null, + "target": { + "x": 1.7088623046875, + "y": 3.388916015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6083, + "pitch": null, + "reason": null, + "target": { + "x": 1.3406982421875, + "y": 3.5811767578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6084, + "pitch": null, + "reason": null, + "target": { + "x": 1.7147216796875, + "y": 3.3466796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6085, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6085, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 59 + } + ], + "addUnitTags": [ + 72089602 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6088, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6088, + "pitch": null, + "reason": null, + "target": { + "x": 1.7161865234375, + "y": 3.307861328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 159824, + "y": 455173, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6089, + "otherUnit": null, + "sequence": 473, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 157 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6089, + "otherUnit": null, + "sequence": 589, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6092, + "pitch": null, + "reason": null, + "target": { + "x": 1.3406982421875, + "y": 3.448486328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6092, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6094, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6094, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6094, + "pitch": null, + "reason": null, + "target": { + "x": 1.713623046875, + "y": 3.27001953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6095, + "pitch": null, + "reason": null, + "target": { + "x": 1.5819091796875, + "y": 3.820556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6096, + "pitch": null, + "reason": null, + "target": { + "x": 1.1636962890625, + "y": 3.4295654296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6096, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6098, + "target": { + "x": 15.758056640625, + "y": 55.294677734375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6098, + "sequence": 474, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6099, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3477783203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 4, + "unitLink": 121 + } + ], + "addUnitTags": [ + 85458945 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6100, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6100, + "pitch": null, + "reason": null, + "target": { + "x": 1.33935546875, + "y": 1.0833740234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6102, + "pitch": null, + "reason": null, + "target": { + "x": 1.33935546875, + "y": 1.0322265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6103, + "pitch": null, + "reason": null, + "target": { + "x": 1.33935546875, + "y": 0.9383544921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6103, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6105, + "pitch": null, + "reason": null, + "target": { + "x": 1.33935546875, + "y": 0.89306640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6106, + "pitch": null, + "reason": null, + "target": { + "x": 1.5997314453125, + "y": 3.7769775390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6107, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 73400322 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6107, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6107, + "pitch": null, + "reason": null, + "target": { + "x": 1.5997314453125, + "y": 3.7188720703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6109, + "pitch": null, + "reason": null, + "target": { + "x": 1.5997314453125, + "y": 3.670166015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6110, + "target": { + "x": 14.2882080078125, + "y": 57.9254150390625, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6110, + "sequence": 475, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6110, + "pitch": null, + "reason": null, + "target": { + "x": 1.5997314453125, + "y": 3.61572265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6113, + "pitch": null, + "reason": null, + "target": { + "x": 1.26171875, + "y": 3.4295654296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 252142, + "y": 497051, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6113, + "otherUnit": null, + "sequence": 590, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6114, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6114, + "pitch": null, + "reason": null, + "target": { + "x": 1.4039306640625, + "y": 3.4295654296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6115, + "target": { + "x": 35.34521484375, + "y": 62.1097412109375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6115, + "sequence": 591, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6117, + "pitch": null, + "reason": null, + "target": { + "x": 1.674072265625, + "y": 3.61572265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 114 + } + ], + "addUnitTags": [ + 68157445 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6120, + "userid": { + "userId": 1 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6120, + "target": { + "x": 34.784423828125, + "y": 61.6890869140625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6120, + "sequence": 592, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 228006, + "y": 471150, + "z": 40941 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6122, + "otherUnit": null, + "sequence": 476, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6125, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6126, + "target": { + "x": 28.1009521484375, + "y": 57.19287109375, + "z": 4.9962158203125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6126, + "sequence": 477, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6128, + "pitch": null, + "reason": null, + "target": { + "x": 1.6787109375, + "y": 3.544921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6129, + "pitch": null, + "reason": null, + "target": { + "x": 1.6787109375, + "y": 3.4857177734375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6131, + "pitch": null, + "reason": null, + "target": { + "x": 1.5809326171875, + "y": 3.4295654296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6132, + "pitch": null, + "reason": null, + "target": { + "x": 1.64404296875, + "y": 3.4295654296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6132, + "target": { + "x": 34.6385498046875, + "y": 58.0321044921875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6132, + "sequence": 593, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6133, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6135, + "pitch": null, + "reason": null, + "target": { + "x": 1.64404296875, + "y": 3.38525390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6136, + "pitch": null, + "reason": null, + "target": { + "x": 1.799072265625, + "y": 3.660888671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6136, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6137, + "pitch": null, + "reason": null, + "target": { + "x": 1.8577880859375, + "y": 3.6209716796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6137, + "pitch": null, + "reason": null, + "target": { + "x": 1.1500244140625, + "y": 1.0859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6137, + "pitch": null, + "reason": null, + "target": { + "x": 1.799072265625, + "y": 3.660888671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6140, + "pitch": null, + "reason": null, + "target": { + "x": 1.8580322265625, + "y": 3.4619140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6140, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6141, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3065185546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6143, + "pitch": null, + "reason": null, + "target": { + "x": 1.79296875, + "y": 3.527099609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6143, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6143, + "pitch": null, + "reason": null, + "target": { + "x": 1.1500244140625, + "y": 1.0347900390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6144, + "pitch": null, + "reason": null, + "target": { + "x": 1.1500244140625, + "y": 0.9757080078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6146, + "pitch": null, + "reason": null, + "target": { + "x": 1.1500244140625, + "y": 0.93505859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6147, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6147, + "pitch": null, + "reason": null, + "target": { + "x": 0.718994140625, + "y": 3.33544921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6147, + "pitch": null, + "reason": null, + "target": { + "x": 1.8289794921875, + "y": 3.6405029296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6148, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6148, + "pitch": null, + "reason": null, + "target": { + "x": 0.8707275390625, + "y": 3.234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 6148, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 17.25, + "y": 12.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 48, + "snapshotUpkeepPlayerId": 2, + "tag": 64749569, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6148, + "sequence": 594, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6150, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6150, + "pitch": null, + "reason": null, + "target": { + "x": 1.00341796875, + "y": 3.234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6151, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6151, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6151, + "pitch": null, + "reason": null, + "target": { + "x": 1.85546875, + "y": 3.6224365234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6154, + "pitch": null, + "reason": null, + "target": { + "x": 1.7974853515625, + "y": 3.56640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6154, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 85721089 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6157, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6158, + "pitch": null, + "reason": null, + "target": { + "x": 1.8577880859375, + "y": 3.5889892578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6158, + "pitch": null, + "reason": null, + "target": { + "x": 1.8104248046875, + "y": 3.597900390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 129024, + "y": 104448, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6158, + "otherUnit": null, + "sequence": 595, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6170, + "pitch": null, + "reason": null, + "target": { + "x": 1.7012939453125, + "y": 3.3616943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6172, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.3616943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 62914563, + 83099649, + 83361793, + 88080385 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6172, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6173, + "pitch": null, + "reason": null, + "target": { + "x": 1.8563232421875, + "y": 3.587890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6176, + "pitch": null, + "reason": null, + "target": { + "x": 1.8330078125, + "y": 3.5543212890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6177, + "pitch": null, + "reason": null, + "target": { + "x": 1.8045654296875, + "y": 3.5225830078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6180, + "pitch": null, + "reason": null, + "target": { + "x": 1.83984375, + "y": 3.612060546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6180, + "pitch": null, + "reason": null, + "target": { + "x": 1.7708740234375, + "y": 3.48779296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6181, + "pitch": null, + "reason": null, + "target": { + "x": 1.7357177734375, + "y": 3.4527587890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6182, + "pitch": null, + "reason": null, + "target": { + "x": 1.642578125, + "y": 3.3016357421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6182, + "pitch": null, + "reason": null, + "target": { + "x": 1.8853759765625, + "y": 3.61767578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6184, + "pitch": null, + "reason": null, + "target": { + "x": 1.696533203125, + "y": 3.4144287109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 257 + }, + "cmdFlags": 131328, + "data": { + "TargetPoint": { + "x": 161792, + "y": 448512, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6185, + "otherUnit": null, + "sequence": 492, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6185, + "pitch": null, + "reason": null, + "target": { + "x": 1.666015625, + "y": 3.3817138671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6187, + "pitch": null, + "reason": null, + "target": { + "x": 1.9195556640625, + "y": 3.6221923828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6187, + "target": { + "x": 19.75, + "y": 54.75, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6187, + "sequence": 493, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6188, + "pitch": null, + "reason": null, + "target": { + "x": 1.644775390625, + "y": 3.3497314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6189, + "target": { + "x": 17.75, + "y": 16.75, + "z": 5.9959716796875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6189, + "sequence": 630, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 4, + "unitLink": 121 + } + ], + "addUnitTags": [ + 85458945 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6191, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6191, + "pitch": null, + "reason": null, + "target": { + "x": 1.0855712890625, + "y": 3.16796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6191, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6192, + "pitch": null, + "reason": null, + "target": { + "x": 1.3131103515625, + "y": 2.9183349609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6193, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6193, + "pitch": null, + "reason": null, + "target": { + "x": 1.3131103515625, + "y": 2.7982177734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6193, + "pitch": null, + "reason": null, + "target": { + "x": 1.640380859375, + "y": 3.31640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6195, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6198, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6199, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6199, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3387451171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6200, + "pitch": null, + "reason": null, + "target": { + "x": 2.0206298828125, + "y": 3.684814453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6202, + "pitch": null, + "reason": null, + "target": { + "x": 1.8983154296875, + "y": 3.584716796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 74186753, + 83886081 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6202, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6203, + "pitch": null, + "reason": null, + "target": { + "x": 1.866455078125, + "y": 3.542724609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 387 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6203, + "otherUnit": null, + "sequence": 632, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6204, + "target": { + "x": 24.25, + "y": 46.25, + "z": 4.9949951171875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6204, + "sequence": 497, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 296960, + "y": 468992, + "z": 32768 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 33292289, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6204, + "otherUnit": null, + "sequence": 633, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6206, + "pitch": null, + "reason": null, + "target": { + "x": 1.8265380859375, + "y": 3.4976806640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6207, + "pitch": null, + "reason": null, + "target": { + "x": 1.794189453125, + "y": 3.4620361328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6210, + "pitch": null, + "reason": null, + "target": { + "x": 1.7674560546875, + "y": 3.428955078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6210, + "pitch": null, + "reason": null, + "target": { + "x": 1.46484375, + "y": 2.7003173828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6210, + "pitch": null, + "reason": null, + "target": { + "x": 2.0252685546875, + "y": 3.6407470703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6211, + "pitch": null, + "reason": null, + "target": { + "x": 1.6954345703125, + "y": 2.5107421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6211, + "pitch": null, + "reason": null, + "target": { + "x": 2.120361328125, + "y": 3.545654296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6213, + "pitch": null, + "reason": null, + "target": { + "x": 1.8408203125, + "y": 2.5107421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6213, + "pitch": null, + "reason": null, + "target": { + "x": 2.1517333984375, + "y": 3.493408203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6213, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6214, + "pitch": null, + "reason": null, + "target": { + "x": 2.1031494140625, + "y": 2.5107421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6214, + "pitch": null, + "reason": null, + "target": { + "x": 2.1517333984375, + "y": 3.406494140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6215, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 4, + "unitLink": 121 + } + ], + "addUnitTags": [ + 83623937 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6217, + "userid": { + "userId": 1 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6218, + "target": { + "x": 37.6112060546875, + "y": 52.77685546875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6218, + "sequence": 634, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6221, + "target": { + "x": 37.14404296875, + "y": 53.056640625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6221, + "sequence": 635, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6222, + "pitch": null, + "reason": null, + "target": { + "x": 2.1031494140625, + "y": 2.6466064453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6224, + "pitch": null, + "reason": null, + "target": { + "x": 2.1707763671875, + "y": 3.6009521484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6224, + "pitch": null, + "reason": null, + "target": { + "x": 2.1031494140625, + "y": 2.7572021484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6225, + "pitch": null, + "reason": null, + "target": { + "x": 2.1707763671875, + "y": 3.6009521484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 130 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 303822, + "y": 436966, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6226, + "otherUnit": null, + "sequence": 636, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6228, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6230, + "pitch": null, + "reason": null, + "target": { + "x": 2.2099609375, + "y": 3.6009521484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 303641, + "y": 436325, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6230, + "otherUnit": null, + "sequence": 637, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6232, + "pitch": null, + "reason": null, + "target": { + "x": 2.250732421875, + "y": 3.6009521484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 67633154 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6232, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6233, + "pitch": null, + "reason": null, + "target": { + "x": 2.3187255859375, + "y": 3.6009521484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6233, + "target": { + "x": 34.75, + "y": 43.75, + "z": 3.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6233, + "sequence": 498, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6233, + "target": { + "x": 37.145751953125, + "y": 52.0828857421875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6233, + "sequence": 638, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6234, + "pitch": null, + "reason": null, + "target": { + "x": 2.3563232421875, + "y": 3.5882568359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6236, + "pitch": null, + "reason": null, + "target": { + "x": 2.3907470703125, + "y": 3.5538330078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6236, + "pitch": null, + "reason": null, + "target": { + "x": 2.1517333984375, + "y": 3.3704833984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6237, + "pitch": null, + "reason": null, + "target": { + "x": 2.435546875, + "y": 3.489013671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6237, + "pitch": null, + "reason": null, + "target": { + "x": 2.1031494140625, + "y": 2.8013916015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6237, + "pitch": null, + "reason": null, + "target": { + "x": 2.1517333984375, + "y": 3.3194580078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6239, + "pitch": null, + "reason": null, + "target": { + "x": 2.1031494140625, + "y": 2.9404296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6239, + "pitch": null, + "reason": null, + "target": { + "x": 2.1517333984375, + "y": 3.26611328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6239, + "pitch": null, + "reason": null, + "target": { + "x": 2.2047119140625, + "y": 3.5994873046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6240, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6241, + "pitch": null, + "reason": null, + "target": { + "x": 2.2470703125, + "y": 3.5865478515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6244, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.28857421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6244, + "pitch": null, + "reason": null, + "target": { + "x": 2.2835693359375, + "y": 3.56982421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6245, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6245, + "target": { + "x": 37.403564453125, + "y": 54.181884765625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6245, + "sequence": 639, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6245, + "pitch": null, + "reason": null, + "target": { + "x": 2.3199462890625, + "y": 3.5513916015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6247, + "pitch": null, + "reason": null, + "target": { + "x": 2.360107421875, + "y": 3.530029296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 61865993 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6248, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6248, + "otherUnit": null, + "sequence": 499, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 61865993 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6250, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6250, + "pitch": null, + "reason": null, + "target": { + "x": 2.4002685546875, + "y": 3.5081787109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6251, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6251, + "pitch": null, + "reason": null, + "target": { + "x": 1.060791015625, + "y": 0.8043212890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 130 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 301572, + "y": 455970, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6251, + "otherUnit": null, + "sequence": 640, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6251, + "pitch": null, + "reason": null, + "target": { + "x": 2.4290771484375, + "y": 3.492431640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6252, + "pitch": null, + "reason": null, + "target": { + "x": 2.435546875, + "y": 3.4322509765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6254, + "pitch": null, + "reason": null, + "target": { + "x": 2.435546875, + "y": 3.3978271484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6255, + "pitch": null, + "reason": null, + "target": { + "x": 2.435546875, + "y": 3.33056640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6256, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 301797, + "y": 430617, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6258, + "otherUnit": null, + "sequence": 641, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6259, + "pitch": null, + "reason": null, + "target": { + "x": 2.4368896484375, + "y": 3.460693359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6260, + "target": { + "x": 36.408203125, + "y": 51.726318359375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6260, + "sequence": 642, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6262, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6262, + "pitch": null, + "reason": null, + "target": { + "x": 2.436767578125, + "y": 3.42626953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6263, + "pitch": null, + "reason": null, + "target": { + "x": 2.4755859375, + "y": 3.3001708984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6263, + "target": { + "x": 36.4542236328125, + "y": 51.83984375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6263, + "sequence": 643, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6265, + "pitch": null, + "reason": null, + "target": { + "x": 2.51318359375, + "y": 3.3001708984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6265, + "pitch": null, + "reason": null, + "target": { + "x": 1.0245361328125, + "y": 0.810302734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6266, + "target": { + "x": 36.69775390625, + "y": 49.6507568359375, + "z": 4.0477294921875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6266, + "sequence": 644, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6266, + "pitch": null, + "reason": null, + "target": { + "x": 2.436767578125, + "y": 3.3851318359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6267, + "pitch": null, + "reason": null, + "target": { + "x": 0.985595703125, + "y": 0.813232421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6269, + "pitch": null, + "reason": null, + "target": { + "x": 0.9522705078125, + "y": 0.82080078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6269, + "pitch": null, + "reason": null, + "target": { + "x": 2.447509765625, + "y": 3.3485107421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6273, + "pitch": null, + "reason": null, + "target": { + "x": 2.4710693359375, + "y": 3.325439453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6274, + "pitch": null, + "reason": null, + "target": { + "x": 2.466796875, + "y": 3.3001708984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6274, + "pitch": null, + "reason": null, + "target": { + "x": 2.429931640625, + "y": 3.3001708984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 81526786, + 87556097, + 90701826 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6274, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6274, + "target": { + "x": 38.6278076171875, + "y": 52.068115234375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6274, + "sequence": 645, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6278, + "pitch": null, + "reason": null, + "target": { + "x": 2.42431640625, + "y": 3.2562255859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6278, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6278, + "target": { + "x": 36.77001953125, + "y": 56.1951904296875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6278, + "sequence": 646, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6280, + "pitch": null, + "reason": null, + "target": { + "x": 2.42431640625, + "y": 3.2218017578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6281, + "pitch": null, + "reason": null, + "target": { + "x": 2.42431640625, + "y": 3.1873779296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6281, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 90963969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6282, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689, + 91226113 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6284, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6284, + "pitch": null, + "reason": null, + "target": { + "x": 2.474609375, + "y": 3.29296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6286, + "target": { + "x": 36.630615234375, + "y": 50.6214599609375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6286, + "sequence": 647, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6288, + "pitch": null, + "reason": null, + "target": { + "x": 2.456787109375, + "y": 3.263427734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 423936, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 26476545, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6291, + "otherUnit": null, + "sequence": 500, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6291, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6291, + "pitch": null, + "reason": null, + "target": { + "x": 2.1517333984375, + "y": 3.205810546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6292, + "pitch": null, + "reason": null, + "target": { + "x": 2.1517333984375, + "y": 3.103759765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6292, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6292, + "pitch": null, + "reason": null, + "target": { + "x": 2.4400634765625, + "y": 3.2255859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6293, + "pitch": null, + "reason": null, + "target": { + "x": 2.1517333984375, + "y": 3.0538330078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6295, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6295, + "pitch": null, + "reason": null, + "target": { + "x": 2.1517333984375, + "y": 2.9969482421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6295, + "pitch": null, + "reason": null, + "target": { + "x": 2.427978515625, + "y": 3.1962890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6296, + "pitch": null, + "reason": null, + "target": { + "x": 2.15087890625, + "y": 3.21728515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 81526786, + 87556097, + 90701826 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6296, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6296, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6297, + "target": { + "x": 38.5804443359375, + "y": 46.3243408203125, + "z": 4.0477294921875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6297, + "sequence": 648, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6299, + "pitch": null, + "reason": null, + "target": { + "x": 1.6756591796875, + "y": 3.2684326171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6299, + "otherUnit": null, + "sequence": 501, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6300, + "pitch": null, + "reason": null, + "target": { + "x": 1.87158203125, + "y": 3.51806640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 81526786 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6300, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6302, + "pitch": null, + "reason": null, + "target": { + "x": 0.98583984375, + "y": 0.8409423828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6302, + "pitch": null, + "reason": null, + "target": { + "x": 1.87158203125, + "y": 3.6002197265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 253629, + "y": 517858, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6303, + "otherUnit": null, + "sequence": 502, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 130 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 307738, + "y": 402690, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6303, + "otherUnit": null, + "sequence": 649, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6307, + "pitch": null, + "reason": null, + "target": { + "x": 1.9505615234375, + "y": 3.568603515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6308, + "pitch": null, + "reason": null, + "target": { + "x": 2.0833740234375, + "y": 3.4359130859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6310, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6310, + "pitch": null, + "reason": null, + "target": { + "x": 2.0833740234375, + "y": 3.287353515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6310, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6310, + "target": { + "x": 39.682373046875, + "y": 49.4644775390625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6310, + "sequence": 650, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6311, + "pitch": null, + "reason": null, + "target": { + "x": 2.0833740234375, + "y": 3.1483154296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6312, + "pitch": null, + "reason": null, + "target": { + "x": 2.189208984375, + "y": 3.2196044921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6314, + "pitch": null, + "reason": null, + "target": { + "x": 2.2431640625, + "y": 3.2000732421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 298233, + "y": 413529, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6314, + "otherUnit": null, + "sequence": 503, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6315, + "pitch": null, + "reason": null, + "target": { + "x": 2.2724609375, + "y": 3.18505859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6317, + "pitch": null, + "reason": null, + "target": { + "x": 2.3114013671875, + "y": 3.1669921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6317, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6317, + "target": { + "x": 39.17529296875, + "y": 49.593505859375, + "z": 4.0477294921875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6317, + "sequence": 651, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6318, + "target": { + "x": 36.393310546875, + "y": 50.51806640625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6318, + "sequence": 504, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6319, + "pitch": null, + "reason": null, + "target": { + "x": 2.42431640625, + "y": 3.1513671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6321, + "pitch": null, + "reason": null, + "target": { + "x": 2.42431640625, + "y": 3.11865234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6321, + "pitch": null, + "reason": null, + "target": { + "x": 2.337646484375, + "y": 3.14599609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6321, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6322, + "pitch": null, + "reason": null, + "target": { + "x": 2.42431640625, + "y": 3.0865478515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6322, + "target": { + "x": 36.4644775390625, + "y": 49.6837158203125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6322, + "sequence": 652, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 87556097, + 90701826 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6325, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6326, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6327, + "pitch": null, + "reason": null, + "target": { + "x": 2.42431640625, + "y": 3.1629638671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6329, + "pitch": null, + "reason": null, + "target": { + "x": 2.360107421875, + "y": 3.1160888671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6329, + "otherUnit": null, + "sequence": 505, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6329, + "pitch": null, + "reason": null, + "target": { + "x": 1.078125, + "y": 0.8988037109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6330, + "pitch": null, + "reason": null, + "target": { + "x": 2.39990234375, + "y": 3.0897216796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 87556097 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6330, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6332, + "pitch": null, + "reason": null, + "target": { + "x": 2.4449462890625, + "y": 3.0748291015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6332, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6332, + "pitch": null, + "reason": null, + "target": { + "x": 2.42431640625, + "y": 3.129638671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 207614, + "y": 266825, + "z": 32833 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6333, + "otherUnit": null, + "sequence": 506, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6333, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6336, + "pitch": null, + "reason": null, + "target": { + "x": 2.42431640625, + "y": 3.041015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6336, + "pitch": null, + "reason": null, + "target": { + "x": 2.48095703125, + "y": 3.0679931640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 89915393, + 91750401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6336, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6336, + "pitch": null, + "reason": null, + "target": { + "x": 2.0833740234375, + "y": 3.0281982421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6336, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6336, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6336, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6336, + "pitch": null, + "reason": null, + "target": { + "x": 2.42431640625, + "y": 3.0947265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6337, + "pitch": null, + "reason": null, + "target": { + "x": 2.42431640625, + "y": 2.989013671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6337, + "pitch": null, + "reason": null, + "target": { + "x": 2.108642578125, + "y": 2.9681396484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 312064, + "y": 383109, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6338, + "otherUnit": null, + "sequence": 507, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6340, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6340, + "otherUnit": null, + "sequence": 653, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6341, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6341, + "target": { + "x": 37.958251953125, + "y": 46.9913330078125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6341, + "sequence": 508, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6343, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6344, + "pitch": null, + "reason": null, + "target": { + "x": 2.38427734375, + "y": 2.989013671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6344, + "pitch": null, + "reason": null, + "target": { + "x": 2.3450927734375, + "y": 2.989013671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6344, + "pitch": null, + "reason": null, + "target": { + "x": 2.4268798828125, + "y": 3.069580078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6344, + "pitch": null, + "reason": null, + "target": { + "x": 0.9866943359375, + "y": 0.7998046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6344, + "pitch": null, + "reason": null, + "target": { + "x": 2.42431640625, + "y": 3.058837890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6345, + "pitch": null, + "reason": null, + "target": { + "x": 2.3074951171875, + "y": 2.989013671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6345, + "pitch": null, + "reason": null, + "target": { + "x": 2.3931884765625, + "y": 3.0732421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6347, + "pitch": null, + "reason": null, + "target": { + "x": 2.357177734375, + "y": 3.0777587890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 91226113 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6347, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6347, + "pitch": null, + "reason": null, + "target": { + "x": 2.420166015625, + "y": 3.027099609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6348, + "pitch": null, + "reason": null, + "target": { + "x": 2.318115234375, + "y": 3.082275390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 71827459 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6348, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6349, + "target": { + "x": 36.2718505859375, + "y": 47.3790283203125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6349, + "sequence": 509, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 90963969 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6349, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6352, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6352, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 169872, + "y": 148729, + "z": 42236 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6352, + "otherUnit": null, + "sequence": 654, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6352, + "pitch": null, + "reason": null, + "target": { + "x": 2.391845703125, + "y": 3.008544921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6355, + "pitch": null, + "reason": null, + "target": { + "x": 2.3612060546875, + "y": 2.9998779296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 304317, + "y": 385779, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6356, + "otherUnit": null, + "sequence": 510, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6356, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6358, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6358, + "pitch": null, + "reason": null, + "target": { + "x": 2.3265380859375, + "y": 2.99267578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6359, + "target": { + "x": 37.1708984375, + "y": 47.220947265625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6359, + "sequence": 511, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6359, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 80740355, + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6360, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6362, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.0040283203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6363, + "otherUnit": null, + "sequence": 655, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 71827459 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6366, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6366, + "sequence": 656, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6370, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 75497473, + 77594625 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6371, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6371, + "otherUnit": null, + "sequence": 657, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6373, + "target": { + "x": 37.0543212890625, + "y": 50.30908203125, + "z": 4.0477294921875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6373, + "sequence": 512, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6375, + "sequence": 658, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6377, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 240388, + "y": 137916, + "z": 40931 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6379, + "otherUnit": null, + "sequence": 659, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6379, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 14, + "Data": "0x6f39" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6381, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 67371009, + 82837505, + 87818242, + 88604673, + 88866817 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x07" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6385, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6392, + "pitch": null, + "reason": null, + "target": { + "x": 1.0050048828125, + "y": 0.846923828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6393, + "pitch": null, + "reason": null, + "target": { + "x": 1.0230712890625, + "y": 0.890380859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 6395, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 25.5, + "y": 13.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10747905, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6395, + "sequence": 661, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6396, + "pitch": null, + "reason": null, + "target": { + "x": 1.0430908203125, + "y": 0.936279296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6396, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6397, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6400, + "pitch": null, + "reason": null, + "target": { + "x": 2.2789306640625, + "y": 3.1298828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6403, + "userid": { + "userId": 1 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 6403, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 36.4644775390625, + "y": 49.6837158203125, + "z": 5.879638671875 + }, + "snapshotUnitLink": 76, + "snapshotUpkeepPlayerId": 2, + "tag": 82575361, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6403, + "sequence": 513, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6404, + "otherUnit": null, + "sequence": 662, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 87293955 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6405, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6408, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 77856769, + 78118913, + 79691779, + 80740355 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6410, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 6412, + "pitch": null, + "reason": null, + "target": { + "x": 1.0537109375, + "y": 0.9671630859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6414, + "target": { + "x": 39.4666748046875, + "y": 52.2041015625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6414, + "sequence": 514, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 298717, + "y": 407009, + "z": 48166 + }, + "snapshotUnitLink": 76, + "snapshotUpkeepPlayerId": 2, + "tag": 82575361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6414, + "otherUnit": null, + "sequence": 663, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0f" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6415, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 6416, + "pitch": null, + "reason": null, + "target": { + "x": 1.0625, + "y": 1.0008544921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6418, + "target": { + "x": 38.1192626953125, + "y": 52.2689208984375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6418, + "sequence": 664, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6419, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 6421, + "pitch": null, + "reason": null, + "target": { + "x": 1.0782470703125, + "y": 1.0390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6422, + "target": { + "x": 38.077392578125, + "y": 52.6181640625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6422, + "sequence": 665, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 6425, + "pitch": null, + "reason": null, + "target": { + "x": 1.09814453125, + "y": 1.0703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 66846723, + 69468161, + 78905347, + 79953923 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6425, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6426, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6427, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51118081 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6429, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6429, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 6430, + "pitch": null, + "reason": null, + "target": { + "x": 2.167236328125, + "y": 2.989013671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6431, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6433, + "pitch": null, + "reason": null, + "target": { + "x": 1.7230224609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6433, + "target": { + "x": 42.6724853515625, + "y": 53.7362060546875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6433, + "sequence": 666, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6434, + "pitch": null, + "reason": null, + "target": { + "x": 1.862060546875, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6434, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6436, + "pitch": null, + "reason": null, + "target": { + "x": 2.0233154296875, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6437, + "pitch": null, + "reason": null, + "target": { + "x": 2.3074951171875, + "y": 3.0369873046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6437, + "pitch": null, + "reason": null, + "target": { + "x": 2.3074951171875, + "y": 3.0721435546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6437, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6438, + "pitch": null, + "reason": null, + "target": { + "x": 2.3074951171875, + "y": 3.1058349609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6440, + "pitch": null, + "reason": null, + "target": { + "x": 2.3251953125, + "y": 3.141845703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6440, + "pitch": null, + "reason": null, + "target": { + "x": 2.2059326171875, + "y": 3.0172119140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6440, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6441, + "pitch": null, + "reason": null, + "target": { + "x": 2.3931884765625, + "y": 3.2098388671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6441, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6442, + "pitch": null, + "reason": null, + "target": { + "x": 2.42919921875, + "y": 3.2161865234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6442, + "pitch": null, + "reason": null, + "target": { + "x": 2.2364501953125, + "y": 3.0391845703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6444, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6444, + "pitch": null, + "reason": null, + "target": { + "x": 2.312255859375, + "y": 3.0242919921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6445, + "pitch": null, + "reason": null, + "target": { + "x": 1.6790771484375, + "y": 1.0977783203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6445, + "pitch": null, + "reason": null, + "target": { + "x": 2.2769775390625, + "y": 3.0694580078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6445, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6447, + "pitch": null, + "reason": null, + "target": { + "x": 2.3045654296875, + "y": 3.098876953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6447, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6448, + "pitch": null, + "reason": null, + "target": { + "x": 2.3280029296875, + "y": 3.1273193359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6448, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6448, + "pitch": null, + "reason": null, + "target": { + "x": 2.3330078125, + "y": 3.066162109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6449, + "pitch": null, + "reason": null, + "target": { + "x": 2.3516845703125, + "y": 3.0972900390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6451, + "pitch": null, + "reason": null, + "target": { + "x": 2.3438720703125, + "y": 3.157958984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x1b" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6452, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6452, + "pitch": null, + "reason": null, + "target": { + "x": 2.37353515625, + "y": 3.131591796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6453, + "pitch": null, + "reason": null, + "target": { + "x": 2.370849609375, + "y": 3.19580078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 305152, + "y": 440320, + "z": 32718 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6453, + "otherUnit": null, + "sequence": 515, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6453, + "pitch": null, + "reason": null, + "target": { + "x": 2.3975830078125, + "y": 3.168212890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 143 + }, + "cmdFlags": 16777472, + "data": { + "TargetPoint": { + "x": 104448, + "y": 108544, + "z": 49104 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6455, + "otherUnit": null, + "sequence": 668, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6455, + "pitch": null, + "reason": null, + "target": { + "x": 2.418701171875, + "y": 3.2003173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6456, + "pitch": null, + "reason": null, + "target": { + "x": 2.395751953125, + "y": 3.2242431640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 87293955 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6459, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 151814, + "y": 184271, + "z": 40939 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6460, + "otherUnit": null, + "sequence": 669, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6460, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6462, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 1.0001220703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6463, + "pitch": null, + "reason": null, + "target": { + "x": 2.41650390625, + "y": 3.251220703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6463, + "target": { + "x": 12.6622314453125, + "y": 25.7391357421875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6463, + "sequence": 670, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6463, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 1.099853515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6464, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 1.1439208984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6466, + "pitch": null, + "reason": null, + "target": { + "x": 1.6318359375, + "y": 1.0999755859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6466, + "pitch": null, + "reason": null, + "target": { + "x": 1.5950927734375, + "y": 1.1068115234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6466, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6466, + "pitch": null, + "reason": null, + "target": { + "x": 2.0770263671875, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6467, + "pitch": null, + "reason": null, + "target": { + "x": 2.257080078125, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6468, + "pitch": null, + "reason": null, + "target": { + "x": 1.5538330078125, + "y": 1.1195068359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 62914563, + 66322433, + 66584577, + 67371009, + 71565319, + 82837505, + 83099649, + 83361793, + 87818242, + 88080385, + 88604673, + 88866817, + 89391105 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6470, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6470, + "pitch": null, + "reason": null, + "target": { + "x": 1.5201416015625, + "y": 1.131591796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6471, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6472, + "pitch": null, + "reason": null, + "target": { + "x": 1.46240234375, + "y": 1.1533203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6472, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6474, + "pitch": null, + "reason": null, + "target": { + "x": 1.4345703125, + "y": 1.1683349609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 316447, + "y": 430152, + "z": 48128 + }, + "snapshotUnitLink": 76, + "snapshotUpkeepPlayerId": 2, + "tag": 82575361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6479, + "otherUnit": null, + "sequence": 516, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6481, + "pitch": null, + "reason": null, + "target": { + "x": 1.0362548828125, + "y": 1.9813232421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6483, + "pitch": null, + "reason": null, + "target": { + "x": 2.4088134765625, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6483, + "pitch": null, + "reason": null, + "target": { + "x": 0.9970703125, + "y": 1.802734375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 87293955 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6485, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6485, + "pitch": null, + "reason": null, + "target": { + "x": 0.840576171875, + "y": 1.604248046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6488, + "pitch": null, + "reason": null, + "target": { + "x": 2.43994140625, + "y": 3.2728271484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6488, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6493, + "pitch": null, + "reason": null, + "target": { + "x": 2.2044677734375, + "y": 3.0655517578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6493, + "target": { + "x": 13.833984375, + "y": 27.1094970703125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6493, + "sequence": 671, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6494, + "target": { + "x": 31.687255859375, + "y": 48.0228271484375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6494, + "sequence": 517, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6498, + "pitch": null, + "reason": null, + "target": { + "x": 2.2044677734375, + "y": 2.9359130859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6500, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6500, + "pitch": null, + "reason": null, + "target": { + "x": 2.2044677734375, + "y": 2.812744140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6501, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6501, + "target": { + "x": 35.3494873046875, + "y": 44.5966796875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6501, + "sequence": 518, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6508, + "pitch": null, + "reason": null, + "target": { + "x": 2.39501953125, + "y": 3.4129638671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 258, + "data": { + "TargetPoint": { + "x": 109071, + "y": 217110, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6508, + "otherUnit": null, + "sequence": 673, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6511, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6512, + "pitch": null, + "reason": null, + "target": { + "x": 2.4163818359375, + "y": 3.1873779296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 252 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 292864, + "y": 382976, + "z": 32720 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6512, + "otherUnit": null, + "sequence": 519, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6514, + "pitch": null, + "reason": null, + "target": { + "x": 2.3795166015625, + "y": 3.150634765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6515, + "pitch": null, + "reason": null, + "target": { + "x": 2.3074951171875, + "y": 3.07861328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6515, + "pitch": null, + "reason": null, + "target": { + "x": 2.572998046875, + "y": 3.3543701171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6516, + "pitch": null, + "reason": null, + "target": { + "x": 2.29150390625, + "y": 3.04736328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6519, + "target": { + "x": 35.25, + "y": 49.25, + "z": 3.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6519, + "sequence": 520, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6522, + "pitch": null, + "reason": null, + "target": { + "x": 2.3958740234375, + "y": 3.174072265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6523, + "pitch": null, + "reason": null, + "target": { + "x": 2.4698486328125, + "y": 3.2962646484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 353263, + "y": 444334, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6523, + "otherUnit": null, + "sequence": 674, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6523, + "pitch": null, + "reason": null, + "target": { + "x": 2.3753662109375, + "y": 3.149169921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585, + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6526, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6526, + "pitch": null, + "reason": null, + "target": { + "x": 2.514892578125, + "y": 3.328369140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6526, + "pitch": null, + "reason": null, + "target": { + "x": 2.350830078125, + "y": 3.1192626953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6527, + "pitch": null, + "reason": null, + "target": { + "x": 2.550048828125, + "y": 3.3505859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6527, + "target": { + "x": 45.1263427734375, + "y": 53.241943359375, + "z": 4.8660888671875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6527, + "sequence": 675, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6527, + "pitch": null, + "reason": null, + "target": { + "x": 2.3267822265625, + "y": 3.0902099609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6529, + "pitch": null, + "reason": null, + "target": { + "x": 2.578857421875, + "y": 3.364013671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6529, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6530, + "pitch": null, + "reason": null, + "target": { + "x": 2.622314453125, + "y": 3.3865966796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6530, + "target": { + "x": 46.970947265625, + "y": 53.3583984375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6530, + "sequence": 676, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6530, + "pitch": null, + "reason": null, + "target": { + "x": 2.3013916015625, + "y": 3.059326171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6531, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 387 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6531, + "otherUnit": null, + "sequence": 677, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6533, + "pitch": null, + "reason": null, + "target": { + "x": 2.6544189453125, + "y": 3.4027099609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6533, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 380610, + "y": 436596, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6533, + "otherUnit": null, + "sequence": 678, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6534, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6534, + "pitch": null, + "reason": null, + "target": { + "x": 2.2044677734375, + "y": 2.860107421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6535, + "pitch": null, + "reason": null, + "target": { + "x": 2.3555908203125, + "y": 3.04736328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6535, + "pitch": null, + "reason": null, + "target": { + "x": 2.6939697265625, + "y": 3.4207763671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6535, + "pitch": null, + "reason": null, + "target": { + "x": 2.2550048828125, + "y": 3.0150146484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6537, + "pitch": null, + "reason": null, + "target": { + "x": 2.3931884765625, + "y": 3.04736328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6537, + "pitch": null, + "reason": null, + "target": { + "x": 2.3876953125, + "y": 3.1697998046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6537, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6538, + "pitch": null, + "reason": null, + "target": { + "x": 2.4547119140625, + "y": 3.0914306640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6538, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6540, + "pitch": null, + "reason": null, + "target": { + "x": 2.489990234375, + "y": 3.1265869140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6541, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6542, + "pitch": null, + "reason": null, + "target": { + "x": 2.5635986328125, + "y": 3.2001953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6542, + "pitch": null, + "reason": null, + "target": { + "x": 2.5994873046875, + "y": 3.2362060546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6542, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6542, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6544, + "pitch": null, + "reason": null, + "target": { + "x": 2.6363525390625, + "y": 3.27294921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6544, + "pitch": null, + "reason": null, + "target": { + "x": 2.429443359375, + "y": 3.4129638671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6544, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6544, + "pitch": null, + "reason": null, + "target": { + "x": 2.3427734375, + "y": 3.060546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6545, + "pitch": null, + "reason": null, + "target": { + "x": 2.701904296875, + "y": 3.338623046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6546, + "pitch": null, + "reason": null, + "target": { + "x": 2.7379150390625, + "y": 3.3746337890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6546, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6546, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6546, + "pitch": null, + "reason": null, + "target": { + "x": 2.3770751953125, + "y": 3.080078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6548, + "pitch": null, + "reason": null, + "target": { + "x": 2.4669189453125, + "y": 3.406982421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6548, + "pitch": null, + "reason": null, + "target": { + "x": 2.41552734375, + "y": 3.1064453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6549, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 181 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6549, + "otherUnit": null, + "sequence": 521, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 55050241, + 58720257, + 72351746 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6550, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6550, + "pitch": null, + "reason": null, + "target": { + "x": 2.463623046875, + "y": 3.1434326171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6552, + "pitch": null, + "reason": null, + "target": { + "x": 2.5074462890625, + "y": 3.4017333984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6552, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6552, + "pitch": null, + "reason": null, + "target": { + "x": 2.49267578125, + "y": 3.1668701171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6553, + "pitch": null, + "reason": null, + "target": { + "x": 2.5430908203125, + "y": 3.2086181640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6555, + "pitch": null, + "reason": null, + "target": { + "x": 2.5517578125, + "y": 3.395751953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6555, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.680908203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6555, + "pitch": null, + "reason": null, + "target": { + "x": 2.57080078125, + "y": 3.23193359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6556, + "pitch": null, + "reason": null, + "target": { + "x": 2.7147216796875, + "y": 3.3905029296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6556, + "pitch": null, + "reason": null, + "target": { + "x": 2.78076171875, + "y": 3.2510986328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 407202, + "y": 432130, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6556, + "otherUnit": null, + "sequence": 522, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6556, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.6229248046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6556, + "pitch": null, + "reason": null, + "target": { + "x": 2.6314697265625, + "y": 3.2835693359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6557, + "pitch": null, + "reason": null, + "target": { + "x": 2.66015625, + "y": 3.3079833984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6559, + "pitch": null, + "reason": null, + "target": { + "x": 2.767578125, + "y": 3.402587890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6559, + "pitch": null, + "reason": null, + "target": { + "x": 2.6004638671875, + "y": 3.385986328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6559, + "pitch": null, + "reason": null, + "target": { + "x": 2.7188720703125, + "y": 3.347900390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6559, + "pitch": null, + "reason": null, + "target": { + "x": 2.6864013671875, + "y": 3.3304443359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6560, + "pitch": null, + "reason": null, + "target": { + "x": 2.834716796875, + "y": 3.402587890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6560, + "pitch": null, + "reason": null, + "target": { + "x": 2.728515625, + "y": 3.3665771484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6561, + "pitch": null, + "reason": null, + "target": { + "x": 2.87158203125, + "y": 3.402587890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6561, + "pitch": null, + "reason": null, + "target": { + "x": 2.6514892578125, + "y": 3.3798828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6561, + "pitch": null, + "reason": null, + "target": { + "x": 2.720947265625, + "y": 3.3094482421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 401286, + "y": 440227, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6561, + "otherUnit": null, + "sequence": 523, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6563, + "pitch": null, + "reason": null, + "target": { + "x": 2.9083251953125, + "y": 3.402587890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6563, + "pitch": null, + "reason": null, + "target": { + "x": 2.6829833984375, + "y": 3.379150390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6563, + "pitch": null, + "reason": null, + "target": { + "x": 2.7369384765625, + "y": 3.2764892578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 4, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 92160, + "y": 75776, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6563, + "otherUnit": null, + "sequence": 679, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6564, + "pitch": null, + "reason": null, + "target": { + "x": 2.9715576171875, + "y": 3.402587890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6564, + "pitch": null, + "reason": null, + "target": { + "x": 2.7607421875, + "y": 3.3875732421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6566, + "pitch": null, + "reason": null, + "target": { + "x": 3.0091552734375, + "y": 3.402587890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6566, + "pitch": null, + "reason": null, + "target": { + "x": 2.7144775390625, + "y": 3.37841796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6566, + "target": { + "x": 49.448974609375, + "y": 52.8970947265625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6566, + "sequence": 524, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6567, + "pitch": null, + "reason": null, + "target": { + "x": 2.75341796875, + "y": 3.376220703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6567, + "pitch": null, + "reason": null, + "target": { + "x": 2.7569580078125, + "y": 3.2462158203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6567, + "pitch": null, + "reason": null, + "target": { + "x": 2.79150390625, + "y": 3.3948974609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6568, + "target": { + "x": 49.4390869140625, + "y": 52.8875732421875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6568, + "sequence": 525, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6568, + "target": { + "x": 12.75, + "y": 9.25, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6568, + "sequence": 680, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6570, + "pitch": null, + "reason": null, + "target": { + "x": 2.7962646484375, + "y": 3.3701171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6570, + "pitch": null, + "reason": null, + "target": { + "x": 2.8355712890625, + "y": 3.3988037109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6571, + "pitch": null, + "reason": null, + "target": { + "x": 2.8330078125, + "y": 3.3634033203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6571, + "pitch": null, + "reason": null, + "target": { + "x": 2.7686767578125, + "y": 3.217041015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6572, + "pitch": null, + "reason": null, + "target": { + "x": 2.865966796875, + "y": 3.35595703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6572, + "pitch": null, + "reason": null, + "target": { + "x": 2.8692626953125, + "y": 3.4002685546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6574, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6574, + "pitch": null, + "reason": null, + "target": { + "x": 2.9056396484375, + "y": 3.4012451171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6576, + "pitch": null, + "reason": null, + "target": { + "x": 2.9019775390625, + "y": 3.3453369140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6576, + "pitch": null, + "reason": null, + "target": { + "x": 2.94140625, + "y": 3.4017333984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6578, + "pitch": null, + "reason": null, + "target": { + "x": 2.791259765625, + "y": 3.24560546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6578, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 89915393, + 91750401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6578, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6578, + "pitch": null, + "reason": null, + "target": { + "x": 2.9766845703125, + "y": 3.4022216796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6579, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6579, + "pitch": null, + "reason": null, + "target": { + "x": 2.809814453125, + "y": 3.2752685546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 115960, + "y": 88548, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6579, + "otherUnit": null, + "sequence": 681, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6579, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6582, + "pitch": null, + "reason": null, + "target": { + "x": 2.83349609375, + "y": 3.3082275390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6582, + "pitch": null, + "reason": null, + "target": { + "x": 3.00830078125, + "y": 3.4024658203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6583, + "pitch": null, + "reason": null, + "target": { + "x": 2.853271484375, + "y": 3.3349609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6586, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 6587, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 10.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1835009, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6587, + "sequence": 682, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 6590, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 7.5, + "y": 10.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 1835009, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6590, + "sequence": 683, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6594, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6596, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 73400322 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6597, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6598, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 88064, + "y": 452608, + "z": 49104 + }, + "snapshotUnitLink": 122, + "snapshotUpkeepPlayerId": 1, + "tag": 49807361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6600, + "otherUnit": null, + "sequence": 526, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6600, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6602, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6602, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6604, + "pitch": null, + "reason": null, + "target": { + "x": 1.93603515625, + "y": 3.2818603515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6605, + "pitch": null, + "reason": null, + "target": { + "x": 2.6866455078125, + "y": 2.9080810546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6605, + "pitch": null, + "reason": null, + "target": { + "x": 1.93603515625, + "y": 3.2818603515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 6607, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 22.5, + "y": 15.25, + "z": 4.99609375 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 9961473, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6607, + "sequence": 684, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6609, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6611, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6611, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6612, + "pitch": null, + "reason": null, + "target": { + "x": 0.9144287109375, + "y": 1.6846923828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6612, + "pitch": null, + "reason": null, + "target": { + "x": 2.6866455078125, + "y": 3.066162109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6613, + "pitch": null, + "reason": null, + "target": { + "x": 2.6866455078125, + "y": 3.1956787109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6619, + "pitch": null, + "reason": null, + "target": { + "x": 1.114501953125, + "y": 1.3270263671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6619, + "otherUnit": null, + "sequence": 685, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6620, + "sequence": 686, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6620, + "pitch": null, + "reason": null, + "target": { + "x": 1.114501953125, + "y": 1.3270263671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6622, + "pitch": null, + "reason": null, + "target": { + "x": 0.877197265625, + "y": 1.4454345703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6622, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6626, + "pitch": null, + "reason": null, + "target": { + "x": 2.90380859375, + "y": 3.3555908203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6631, + "pitch": null, + "reason": null, + "target": { + "x": 0.9189453125, + "y": 1.6507568359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6631, + "pitch": null, + "reason": null, + "target": { + "x": 0.877197265625, + "y": 1.5718994140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6634, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6635, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6635, + "pitch": null, + "reason": null, + "target": { + "x": 2.90380859375, + "y": 3.306884765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6637, + "pitch": null, + "reason": null, + "target": { + "x": 2.90380859375, + "y": 3.2535400390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6638, + "pitch": null, + "reason": null, + "target": { + "x": 2.90380859375, + "y": 3.171142578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6639, + "pitch": null, + "reason": null, + "target": { + "x": 2.9027099609375, + "y": 3.0528564453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 50593794 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6642, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6642, + "pitch": null, + "reason": null, + "target": { + "x": 0.9156494140625, + "y": 1.616943359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6642, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 347265, + "y": 445021, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6642, + "otherUnit": null, + "sequence": 687, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6643, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6645, + "pitch": null, + "reason": null, + "target": { + "x": 2.9027099609375, + "y": 3.147705078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6646, + "target": { + "x": 40.9307861328125, + "y": 55.0791015625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6646, + "sequence": 689, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6649, + "pitch": null, + "reason": null, + "target": { + "x": 1.114501953125, + "y": 1.3790283203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6649, + "pitch": null, + "reason": null, + "target": { + "x": 1.114501953125, + "y": 1.4150390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 406387, + "y": 438304, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6649, + "otherUnit": null, + "sequence": 527, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6649, + "target": { + "x": 41.102294921875, + "y": 54.4913330078125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6649, + "sequence": 690, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6650, + "pitch": null, + "reason": null, + "target": { + "x": 1.114501953125, + "y": 1.45263671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6653, + "target": { + "x": 43.915771484375, + "y": 54.2159423828125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6653, + "sequence": 528, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6653, + "target": { + "x": 41.0028076171875, + "y": 54.2518310546875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6653, + "sequence": 694, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6656, + "target": { + "x": 38.0299072265625, + "y": 53.9801025390625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6656, + "sequence": 700, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6656, + "pitch": null, + "reason": null, + "target": { + "x": 1.114501953125, + "y": 1.3602294921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6657, + "pitch": null, + "reason": null, + "target": { + "x": 0.9234619140625, + "y": 1.5860595703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6657, + "pitch": null, + "reason": null, + "target": { + "x": 2.7763671875, + "y": 3.1697998046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6657, + "pitch": null, + "reason": null, + "target": { + "x": 2.8585205078125, + "y": 3.171142578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6659, + "pitch": null, + "reason": null, + "target": { + "x": 2.646728515625, + "y": 3.1697998046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6659, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6659, + "pitch": null, + "reason": null, + "target": { + "x": 2.80859375, + "y": 3.171142578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6660, + "pitch": null, + "reason": null, + "target": { + "x": 1.0472412109375, + "y": 1.4166259765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6660, + "pitch": null, + "reason": null, + "target": { + "x": 1.010498046875, + "y": 1.3798828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6660, + "target": { + "x": 35.2647705078125, + "y": 53.329833984375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6660, + "sequence": 701, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6660, + "pitch": null, + "reason": null, + "target": { + "x": 2.7042236328125, + "y": 3.171142578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6660, + "pitch": null, + "reason": null, + "target": { + "x": 1.114501953125, + "y": 1.3955078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6661, + "pitch": null, + "reason": null, + "target": { + "x": 1.0048828125, + "y": 1.34228515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6661, + "pitch": null, + "reason": null, + "target": { + "x": 2.65087890625, + "y": 3.171142578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6663, + "pitch": null, + "reason": null, + "target": { + "x": 2.59521484375, + "y": 3.171142578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6663, + "pitch": null, + "reason": null, + "target": { + "x": 1.1134033203125, + "y": 1.4288330078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6664, + "target": { + "x": 41.146240234375, + "y": 53.5074462890625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6664, + "sequence": 529, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6664, + "target": { + "x": 33.197509765625, + "y": 52.9815673828125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6664, + "sequence": 702, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6667, + "pitch": null, + "reason": null, + "target": { + "x": 2.6025390625, + "y": 3.1697998046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6667, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6667, + "pitch": null, + "reason": null, + "target": { + "x": 1.0823974609375, + "y": 1.423828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6668, + "pitch": null, + "reason": null, + "target": { + "x": 2.4571533203125, + "y": 3.1697998046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6668, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6669, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6671, + "pitch": null, + "reason": null, + "target": { + "x": 1.0531005859375, + "y": 1.3951416015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6672, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6672, + "pitch": null, + "reason": null, + "target": { + "x": 2.534912109375, + "y": 3.171142578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6674, + "pitch": null, + "reason": null, + "target": { + "x": 2.479248046875, + "y": 3.171142578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6674, + "pitch": null, + "reason": null, + "target": { + "x": 1.021484375, + "y": 1.3607177734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6675, + "target": { + "x": 39.894287109375, + "y": 54.6331787109375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6675, + "sequence": 530, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6675, + "pitch": null, + "reason": null, + "target": { + "x": 2.3770751953125, + "y": 3.26513671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6678, + "target": { + "x": 31.52197265625, + "y": 56.3828125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6678, + "sequence": 703, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6679, + "pitch": null, + "reason": null, + "target": { + "x": 0.968017578125, + "y": 1.3358154296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 94896129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6679, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6680, + "target": { + "x": 32.74951171875, + "y": 54.685302734375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6680, + "sequence": 704, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6682, + "pitch": null, + "reason": null, + "target": { + "x": 0.9168701171875, + "y": 1.3358154296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6682, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6683, + "target": { + "x": 32.674072265625, + "y": 54.783935546875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6683, + "sequence": 705, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6685, + "pitch": null, + "reason": null, + "target": { + "x": 0.92822265625, + "y": 1.5521240234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6686, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6686, + "pitch": null, + "reason": null, + "target": { + "x": 0.994873046875, + "y": 1.3408203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6687, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6689, + "pitch": null, + "reason": null, + "target": { + "x": 2.328369140625, + "y": 3.2708740234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6689, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6690, + "pitch": null, + "reason": null, + "target": { + "x": 0.9635009765625, + "y": 1.338623046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6691, + "pitch": null, + "reason": null, + "target": { + "x": 1.34912109375, + "y": 0.62890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CameraSave", + "id": 14, + "loop": 6691, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "which": 2 + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6691, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6693, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6693, + "pitch": null, + "reason": null, + "target": { + "x": 1.34912109375, + "y": 0.62890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6694, + "pitch": null, + "reason": null, + "target": { + "x": 2.3226318359375, + "y": 3.3416748046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6694, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6695, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6695, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6698, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6700, + "pitch": null, + "reason": null, + "target": { + "x": 0.9144287109375, + "y": 1.440185546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6700, + "pitch": null, + "reason": null, + "target": { + "x": 0.9317626953125, + "y": 1.5206298828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6701, + "pitch": null, + "reason": null, + "target": { + "x": 1.3851318359375, + "y": 0.62890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6701, + "target": { + "x": 40.8670654296875, + "y": 55.1431884765625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6701, + "sequence": 531, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6701, + "target": { + "x": 33.03662109375, + "y": 54.763427734375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6701, + "sequence": 706, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6702, + "pitch": null, + "reason": null, + "target": { + "x": 1.421142578125, + "y": 0.62890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6704, + "pitch": null, + "reason": null, + "target": { + "x": 1.4564208984375, + "y": 0.59375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6704, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6705, + "pitch": null, + "reason": null, + "target": { + "x": 1.5203857421875, + "y": 0.5296630859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6705, + "target": { + "x": 40.6453857421875, + "y": 55.2742919921875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6705, + "sequence": 532, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6705, + "target": { + "x": 33.0245361328125, + "y": 54.7333984375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6705, + "sequence": 707, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6708, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6709, + "pitch": null, + "reason": null, + "target": { + "x": 1.382080078125, + "y": 0.617431640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 9, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 90701826, + 92274689, + 92536833, + 93061121, + 93585409, + 95682561, + 96206849, + 96731137, + 97255425 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6711, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6712, + "pitch": null, + "reason": null, + "target": { + "x": 1.5203857421875, + "y": 0.596923828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6712, + "pitch": null, + "reason": null, + "target": { + "x": 1.4207763671875, + "y": 0.5941162109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6713, + "pitch": null, + "reason": null, + "target": { + "x": 1.5203857421875, + "y": 0.63134765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6713, + "otherUnit": null, + "sequence": 533, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6713, + "pitch": null, + "reason": null, + "target": { + "x": 2.271240234375, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6715, + "pitch": null, + "reason": null, + "target": { + "x": 1.5203857421875, + "y": 0.6673583984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6715, + "pitch": null, + "reason": null, + "target": { + "x": 2.1131591796875, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 90701826 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6715, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 6715, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 34, + "y": 55.75, + "z": 4 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 0, + "targetUnitFlags": 175, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6715, + "sequence": 709, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6716, + "pitch": null, + "reason": null, + "target": { + "x": 1.5203857421875, + "y": 0.73291015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6716, + "pitch": null, + "reason": null, + "target": { + "x": 1.4581298828125, + "y": 0.573486328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6717, + "pitch": null, + "reason": null, + "target": { + "x": 1.5203857421875, + "y": 0.769775390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6717, + "pitch": null, + "reason": null, + "target": { + "x": 2.09423828125, + "y": 3.3902587890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6717, + "target": { + "x": 35.19921875, + "y": 57.9954833984375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6717, + "sequence": 711, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6719, + "pitch": null, + "reason": null, + "target": { + "x": 1.5203857421875, + "y": 0.8065185546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6719, + "pitch": null, + "reason": null, + "target": { + "x": 2.09423828125, + "y": 3.538818359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6720, + "pitch": null, + "reason": null, + "target": { + "x": 1.5203857421875, + "y": 0.8544921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6720, + "pitch": null, + "reason": null, + "target": { + "x": 0.9354248046875, + "y": 1.488525390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 241409, + "y": 509620, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6720, + "otherUnit": null, + "sequence": 534, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6721, + "target": { + "x": 31.866455078125, + "y": 58.1773681640625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6721, + "sequence": 712, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6721, + "pitch": null, + "reason": null, + "target": { + "x": 1.4937744140625, + "y": 0.5909423828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6723, + "pitch": null, + "reason": null, + "target": { + "x": 2.21435546875, + "y": 3.485107421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6723, + "pitch": null, + "reason": null, + "target": { + "x": 1.504150390625, + "y": 0.6304931640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6724, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6724, + "pitch": null, + "reason": null, + "target": { + "x": 2.3564453125, + "y": 3.4376220703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6724, + "target": { + "x": 30.6041259765625, + "y": 58.2266845703125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6724, + "sequence": 717, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6726, + "pitch": null, + "reason": null, + "target": { + "x": 1.509033203125, + "y": 0.6680908203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6727, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6727, + "pitch": null, + "reason": null, + "target": { + "x": 1.5123291015625, + "y": 0.708251953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6728, + "target": { + "x": 28.8367919921875, + "y": 58.1405029296875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6728, + "sequence": 722, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6728, + "pitch": null, + "reason": null, + "target": { + "x": 2.2958984375, + "y": 3.3695068359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 56, + "unitLink": 252 + } + ], + "addUnitTags": [ + 54788097, + 56623105, + 57933825, + 70778883, + 72613890, + 75497473, + 77594625, + 80478209, + 84934657, + 88342531, + 92012545, + 95158273, + 84410369, + 89128962 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6730, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6730, + "pitch": null, + "reason": null, + "target": { + "x": 0.9189453125, + "y": 1.474609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6730, + "pitch": null, + "reason": null, + "target": { + "x": 2.241455078125, + "y": 3.3695068359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6730, + "pitch": null, + "reason": null, + "target": { + "x": 1.5150146484375, + "y": 0.751220703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6731, + "target": { + "x": 27.9385986328125, + "y": 57.289794921875, + "z": 4.995849609375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6731, + "sequence": 728, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6731, + "pitch": null, + "reason": null, + "target": { + "x": 2.2066650390625, + "y": 3.3695068359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6731, + "pitch": null, + "reason": null, + "target": { + "x": 1.517333984375, + "y": 0.7935791015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 316969, + "y": 446994, + "z": 48128 + }, + "snapshotUnitLink": 76, + "snapshotUpkeepPlayerId": 2, + "tag": 82575361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6734, + "otherUnit": null, + "sequence": 535, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6734, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6734, + "pitch": null, + "reason": null, + "target": { + "x": 1.51953125, + "y": 0.8388671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6735, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6737, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6738, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6739, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6741, + "target": { + "x": 36.2930908203125, + "y": 55.548828125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6741, + "sequence": 536, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6741, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6743, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6743, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6745, + "target": { + "x": 36.3165283203125, + "y": 55.5679931640625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6745, + "sequence": 537, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6749, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6749, + "otherUnit": null, + "sequence": 731, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6750, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6753, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6754, + "pitch": null, + "reason": null, + "target": { + "x": 1.153564453125, + "y": 1.247314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 181220, + "y": 154143, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6756, + "otherUnit": null, + "sequence": 732, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6756, + "pitch": null, + "reason": null, + "target": { + "x": 1.153564453125, + "y": 1.247314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6758, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6760, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6762, + "pitch": null, + "reason": null, + "target": { + "x": 2.19970703125, + "y": 3.3314208984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 95944707 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6762, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6768, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6771, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6771, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6772, + "pitch": null, + "reason": null, + "target": { + "x": 2.21142578125, + "y": 3.3773193359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 56, + "unitLink": 252 + } + ], + "addUnitTags": [ + 88342531, + 95158273, + 84410369 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6772, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6775, + "pitch": null, + "reason": null, + "target": { + "x": 2.210205078125, + "y": 3.4151611328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 210944, + "y": 423936, + "z": 40912 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 60555265, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6778, + "otherUnit": null, + "sequence": 539, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6780, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6782, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6783, + "pitch": null, + "reason": null, + "target": { + "x": 2.3135986328125, + "y": 3.4293212890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6783, + "pitch": null, + "reason": null, + "target": { + "x": 1.7484130859375, + "y": 3.2716064453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6783, + "pitch": null, + "reason": null, + "target": { + "x": 1.8526611328125, + "y": 3.3758544921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6784, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6786, + "pitch": null, + "reason": null, + "target": { + "x": 2.1988525390625, + "y": 3.4451904296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6786, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 223232, + "y": 104448, + "z": 40912 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 12320769, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6786, + "otherUnit": null, + "sequence": 733, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 6788, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 29.25, + "y": 14.75, + "z": 4.994140625 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 12058625, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6788, + "sequence": 734, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6791, + "pitch": null, + "reason": null, + "target": { + "x": 2.1556396484375, + "y": 3.4454345703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 240101, + "y": 460424, + "z": 40923 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6791, + "otherUnit": null, + "sequence": 540, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6791, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6794, + "pitch": null, + "reason": null, + "target": { + "x": 2.1202392578125, + "y": 3.4490966796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6794, + "pitch": null, + "reason": null, + "target": { + "x": 2.135498046875, + "y": 3.5054931640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6795, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 242520, + "y": 485145, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6795, + "otherUnit": null, + "sequence": 735, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6797, + "pitch": null, + "reason": null, + "target": { + "x": 2.0848388671875, + "y": 3.4569091796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6798, + "pitch": null, + "reason": null, + "target": { + "x": 2.05029296875, + "y": 3.459228515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6798, + "target": { + "x": 29.369873046875, + "y": 55.8740234375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6798, + "sequence": 541, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6798, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6799, + "otherUnit": null, + "sequence": 736, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6801, + "pitch": null, + "reason": null, + "target": { + "x": 2.0050048828125, + "y": 3.4637451171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6802, + "pitch": null, + "reason": null, + "target": { + "x": 2.135498046875, + "y": 3.4580078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6802, + "sequence": 737, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6804, + "pitch": null, + "reason": null, + "target": { + "x": 2.274658203125, + "y": 3.4345703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6804, + "pitch": null, + "reason": null, + "target": { + "x": 1.964599609375, + "y": 3.4676513671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6804, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6804, + "pitch": null, + "reason": null, + "target": { + "x": 2.135498046875, + "y": 3.410400390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6805, + "pitch": null, + "reason": null, + "target": { + "x": 1.694580078125, + "y": 3.3758544921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6805, + "pitch": null, + "reason": null, + "target": { + "x": 1.5650634765625, + "y": 3.3758544921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6806, + "pitch": null, + "reason": null, + "target": { + "x": 2.225830078125, + "y": 3.445068359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6806, + "pitch": null, + "reason": null, + "target": { + "x": 1.9180908203125, + "y": 3.468017578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6806, + "pitch": null, + "reason": null, + "target": { + "x": 1.41650390625, + "y": 3.3758544921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6808, + "pitch": null, + "reason": null, + "target": { + "x": 2.18994140625, + "y": 3.4541015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6808, + "pitch": null, + "reason": null, + "target": { + "x": 1.32177734375, + "y": 3.3758544921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6809, + "pitch": null, + "reason": null, + "target": { + "x": 1.8778076171875, + "y": 3.467041015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6810, + "pitch": null, + "reason": null, + "target": { + "x": 2.1546630859375, + "y": 3.4615478515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 261324, + "y": 448670, + "z": 39365 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6810, + "otherUnit": null, + "sequence": 738, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6812, + "pitch": null, + "reason": null, + "target": { + "x": 2.1126708984375, + "y": 3.4765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 87031810 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6812, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6814, + "pitch": null, + "reason": null, + "target": { + "x": 2.0848388671875, + "y": 3.496826171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6814, + "target": { + "x": 30.7066650390625, + "y": 54.8458251953125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6814, + "sequence": 739, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6817, + "pitch": null, + "reason": null, + "target": { + "x": 2.0609130859375, + "y": 3.51708984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6817, + "target": { + "x": 30.617919921875, + "y": 54.8275146484375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6817, + "sequence": 740, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 257 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 157696, + "y": 485376, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6820, + "otherUnit": null, + "sequence": 542, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6824, + "pitch": null, + "reason": null, + "target": { + "x": 2.0406494140625, + "y": 3.5411376953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6825, + "pitch": null, + "reason": null, + "target": { + "x": 1.4449462890625, + "y": 3.2525634765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6825, + "target": { + "x": 33.78369140625, + "y": 55.503173828125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6825, + "sequence": 741, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6827, + "pitch": null, + "reason": null, + "target": { + "x": 1.5714111328125, + "y": 3.126220703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6828, + "pitch": null, + "reason": null, + "target": { + "x": 1.808349609375, + "y": 2.8670654296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6830, + "pitch": null, + "reason": null, + "target": { + "x": 1.808349609375, + "y": 2.71533203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6831, + "pitch": null, + "reason": null, + "target": { + "x": 1.808349609375, + "y": 2.5321044921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 130 + }, + "cmdFlags": 800, + "data": { + "Data": 68943876 + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6832, + "otherUnit": null, + "sequence": 742, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6834, + "pitch": null, + "reason": null, + "target": { + "x": 1.975830078125, + "y": 2.5321044921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6835, + "pitch": null, + "reason": null, + "target": { + "x": 2.0770263671875, + "y": 2.5321044921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6836, + "pitch": null, + "reason": null, + "target": { + "x": 1.8829345703125, + "y": 3.4307861328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 267627, + "y": 474351, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6838, + "otherUnit": null, + "sequence": 743, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 90177538 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6840, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6840, + "target": { + "x": 29.90087890625, + "y": 58.759521484375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6840, + "sequence": 744, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6843, + "pitch": null, + "reason": null, + "target": { + "x": 1.9189453125, + "y": 3.4193115234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6843, + "target": { + "x": 37.75, + "y": 43.25, + "z": 3.993896484375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6843, + "sequence": 543, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 68943876 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6846, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6847, + "pitch": null, + "reason": null, + "target": { + "x": 1.95068359375, + "y": 3.418701171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6847, + "pitch": null, + "reason": null, + "target": { + "x": 2.0770263671875, + "y": 2.62060546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6849, + "pitch": null, + "reason": null, + "target": { + "x": 1.941162109375, + "y": 2.7564697265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6850, + "pitch": null, + "reason": null, + "target": { + "x": 1.7357177734375, + "y": 2.8228759765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 6850, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 32.71240234375, + "y": 56.1556396484375, + "z": 6.2691650390625 + }, + "snapshotUnitLink": 76, + "snapshotUpkeepPlayerId": 2, + "tag": 82575361, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6850, + "sequence": 745, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6851, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6853, + "pitch": null, + "reason": null, + "target": { + "x": 1.984619140625, + "y": 3.425048828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6853, + "target": { + "x": 32.6065673828125, + "y": 55.4935302734375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6853, + "sequence": 746, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 74186753, + 90439681 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6854, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 387 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6854, + "otherUnit": null, + "sequence": 747, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6856, + "pitch": null, + "reason": null, + "target": { + "x": 2.0245361328125, + "y": 3.4287109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 256289, + "y": 451138, + "z": 40919 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6857, + "otherUnit": null, + "sequence": 748, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6860, + "target": { + "x": 27.75, + "y": 44.25, + "z": 3.992431640625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6860, + "sequence": 544, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6860, + "pitch": null, + "reason": null, + "target": { + "x": 2.089111328125, + "y": 3.410400390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6861, + "target": { + "x": 23.720703125, + "y": 58.92919921875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6861, + "sequence": 749, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6861, + "pitch": null, + "reason": null, + "target": { + "x": 1.9893798828125, + "y": 3.410400390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6862, + "pitch": null, + "reason": null, + "target": { + "x": 1.9337158203125, + "y": 3.410400390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6864, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6864, + "pitch": null, + "reason": null, + "target": { + "x": 1.7357177734375, + "y": 2.892333984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6864, + "pitch": null, + "reason": null, + "target": { + "x": 1.8837890625, + "y": 3.410400390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6864, + "target": { + "x": 20.8759765625, + "y": 59.2012939453125, + "z": 4.0357666015625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6864, + "sequence": 750, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6865, + "pitch": null, + "reason": null, + "target": { + "x": 1.7357177734375, + "y": 3.1356201171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6865, + "pitch": null, + "reason": null, + "target": { + "x": 1.7991943359375, + "y": 3.410400390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6866, + "pitch": null, + "reason": null, + "target": { + "x": 1.7357177734375, + "y": 3.293701171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6866, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6868, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6868, + "pitch": null, + "reason": null, + "target": { + "x": 1.7357177734375, + "y": 3.3631591796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6869, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6869, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6871, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6872, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6875, + "target": { + "x": 26.625732421875, + "y": 60.85791015625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6875, + "sequence": 751, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 231943, + "y": 466106, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6877, + "otherUnit": null, + "sequence": 545, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6877, + "pitch": null, + "reason": null, + "target": { + "x": 1.7991943359375, + "y": 3.4521484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6879, + "pitch": null, + "reason": null, + "target": { + "x": 1.7991943359375, + "y": 3.5147705078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6879, + "target": { + "x": 27.175537109375, + "y": 63.5521240234375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6879, + "sequence": 752, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6880, + "pitch": null, + "reason": null, + "target": { + "x": 1.7991943359375, + "y": 3.6123046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6882, + "pitch": null, + "reason": null, + "target": { + "x": 1.9833984375, + "y": 3.43310546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6882, + "pitch": null, + "reason": null, + "target": { + "x": 1.7991943359375, + "y": 3.66796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6882, + "target": { + "x": 27.4365234375, + "y": 63.9998779296875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6882, + "sequence": 753, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6883, + "pitch": null, + "reason": null, + "target": { + "x": 1.7991943359375, + "y": 3.7236328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6886, + "pitch": null, + "reason": null, + "target": { + "x": 1.9420166015625, + "y": 3.4346923828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6886, + "target": { + "x": 28.00341796875, + "y": 63.9998779296875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6886, + "sequence": 754, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6888, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6888, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6890, + "pitch": null, + "reason": null, + "target": { + "x": 1.900634765625, + "y": 3.443603515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6891, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6892, + "pitch": null, + "reason": null, + "target": { + "x": 1.853271484375, + "y": 3.45751953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6892, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6894, + "target": { + "x": 34.5550537109375, + "y": 58.3936767578125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6894, + "sequence": 546, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6895, + "pitch": null, + "reason": null, + "target": { + "x": 1.8232421875, + "y": 3.472412109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6895, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6897, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6897, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6898, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6899, + "pitch": null, + "reason": null, + "target": { + "x": 1.8055419921875, + "y": 3.49951171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6901, + "otherUnit": null, + "sequence": 755, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6903, + "pitch": null, + "reason": null, + "target": { + "x": 1.80615234375, + "y": 3.53515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6903, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51118081, + 75235329, + 79429636, + 91488258 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6905, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6906, + "pitch": null, + "reason": null, + "target": { + "x": 1.8067626953125, + "y": 3.57080078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6907, + "pitch": null, + "reason": null, + "target": { + "x": 1.810302734375, + "y": 3.759765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6909, + "pitch": null, + "reason": null, + "target": { + "x": 1.810302734375, + "y": 3.7911376953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 281272, + "y": 524287, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6909, + "otherUnit": null, + "sequence": 756, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6910, + "pitch": null, + "reason": null, + "target": { + "x": 1.810302734375, + "y": 3.875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6912, + "pitch": null, + "reason": null, + "target": { + "x": 1.80908203125, + "y": 3.6051025390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 10, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 190464, + "y": 407552, + "z": 40931 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6912, + "otherUnit": null, + "sequence": 547, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6912, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6916, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6917, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 92274689, + 95682561, + 96206849, + 96731137, + 97255425 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6918, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6920, + "pitch": null, + "reason": null, + "target": { + "x": 1.8175048828125, + "y": 3.638671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6920, + "otherUnit": null, + "sequence": 548, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6920, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 92274689 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6921, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6924, + "pitch": null, + "reason": null, + "target": { + "x": 1.848388671875, + "y": 3.6605224609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 94371841 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6924, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 423936, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 26476545, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6925, + "otherUnit": null, + "sequence": 549, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 121170, + "y": 153387, + "z": 49117 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6927, + "otherUnit": null, + "sequence": 757, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6929, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6931, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6932, + "pitch": null, + "reason": null, + "target": { + "x": 2.033935546875, + "y": 3.5838623046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6932, + "pitch": null, + "reason": null, + "target": { + "x": 1.8760986328125, + "y": 3.6827392578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6933, + "pitch": null, + "reason": null, + "target": { + "x": 2.036865234375, + "y": 3.619140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 92536833, + 93061121, + 93585409, + 95682561, + 96206849, + 96731137, + 97255425 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6933, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6933, + "otherUnit": null, + "sequence": 550, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6935, + "pitch": null, + "reason": null, + "target": { + "x": 2.043701171875, + "y": 3.6573486328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 92536833 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6935, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 142 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6935, + "otherUnit": null, + "sequence": 758, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6935, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.8980712890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6936, + "sequence": 551, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6936, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.8458251953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 65 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6936, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 65 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6936, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6938, + "pitch": null, + "reason": null, + "target": { + "x": 2.0489501953125, + "y": 3.7060546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 93061121 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6938, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6939, + "pitch": null, + "reason": null, + "target": { + "x": 2.0594482421875, + "y": 3.7503662109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 423936, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 26476545, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6939, + "otherUnit": null, + "sequence": 552, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 145966, + "y": 87887, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6939, + "otherUnit": null, + "sequence": 759, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6940, + "pitch": null, + "reason": null, + "target": { + "x": 1.13671875, + "y": 1.1944580078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6942, + "pitch": null, + "reason": null, + "target": { + "x": 1.098388671875, + "y": 1.1561279296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6942, + "pitch": null, + "reason": null, + "target": { + "x": 2.0849609375, + "y": 3.787109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6943, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6947, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.3126220703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 6949, + "target": { + "x": 20.8724365234375, + "y": 57.593505859375, + "z": 6.0252685546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6949, + "sequence": 553, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6949, + "pitch": null, + "reason": null, + "target": { + "x": 1.1385498046875, + "y": 1.2196044921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 160703, + "y": 454737, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6953, + "otherUnit": null, + "sequence": 554, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6953, + "pitch": null, + "reason": null, + "target": { + "x": 1.1180419921875, + "y": 1.18701171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 141 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 104448, + "y": 120832, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6955, + "otherUnit": null, + "sequence": 761, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6957, + "pitch": null, + "reason": null, + "target": { + "x": 1.1002197265625, + "y": 1.158935546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6958, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6958, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6961, + "pitch": null, + "reason": null, + "target": { + "x": 2.14453125, + "y": 3.820556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 325030, + "y": 524287, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6962, + "otherUnit": null, + "sequence": 762, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6964, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6965, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.2652587890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6966, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.132568359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6966, + "otherUnit": null, + "sequence": 763, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6969, + "pitch": null, + "reason": null, + "target": { + "x": 2.08935546875, + "y": 3.603271484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6969, + "pitch": null, + "reason": null, + "target": { + "x": 1.0283203125, + "y": 1.2119140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6969, + "sequence": 764, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6970, + "pitch": null, + "reason": null, + "target": { + "x": 2.1314697265625, + "y": 3.6513671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6970, + "pitch": null, + "reason": null, + "target": { + "x": 2.16748046875, + "y": 3.6903076171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6970, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6972, + "pitch": null, + "reason": null, + "target": { + "x": 2.229248046875, + "y": 3.820556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 359467, + "y": 524287, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6972, + "otherUnit": null, + "sequence": 765, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6973, + "pitch": null, + "reason": null, + "target": { + "x": 2.200439453125, + "y": 3.7322998046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6975, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 73400322 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6976, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6976, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6977, + "pitch": null, + "reason": null, + "target": { + "x": 2.2252197265625, + "y": 3.7652587890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6979, + "pitch": null, + "reason": null, + "target": { + "x": 2.250732421875, + "y": 3.787841796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6979, + "pitch": null, + "reason": null, + "target": { + "x": 2.274658203125, + "y": 3.81103515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 69609, + "y": 451235, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6979, + "otherUnit": null, + "sequence": 556, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6981, + "pitch": null, + "reason": null, + "target": { + "x": 2.305419921875, + "y": 3.8447265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 6981, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 10.75, + "y": 55.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 122, + "snapshotUpkeepPlayerId": 1, + "tag": 49807361, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 6981, + "sequence": 557, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6981, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6983, + "pitch": null, + "reason": null, + "target": { + "x": 2.33544921875, + "y": 3.875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6983, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6985, + "pitch": null, + "reason": null, + "target": { + "x": 1.013916015625, + "y": 1.169921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6985, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6985, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6988, + "pitch": null, + "reason": null, + "target": { + "x": 0.9970703125, + "y": 1.133544921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 109155, + "y": 476865, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6990, + "otherUnit": null, + "sequence": 558, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 82 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 124928, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 9961473, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6992, + "otherUnit": null, + "sequence": 766, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6994, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 6995, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 93585409, + 95682561, + 96206849, + 96731137, + 97255425 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 6998, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 6998, + "pitch": null, + "reason": null, + "target": { + "x": 2.3802490234375, + "y": 3.820556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 346210, + "y": 506526, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 6999, + "otherUnit": null, + "sequence": 767, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7002, + "pitch": null, + "reason": null, + "target": { + "x": 1.078369140625, + "y": 1.10009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7002, + "pitch": null, + "reason": null, + "target": { + "x": 1.32958984375, + "y": 0.5924072265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7003, + "pitch": null, + "reason": null, + "target": { + "x": 1.078369140625, + "y": 1.03369140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7003, + "pitch": null, + "reason": null, + "target": { + "x": 1.2513427734375, + "y": 0.6121826171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7005, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7007, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7010, + "pitch": null, + "reason": null, + "target": { + "x": 2.4339599609375, + "y": 3.820556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 422982, + "y": 441067, + "z": 40912 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7010, + "otherUnit": null, + "sequence": 768, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7010, + "pitch": null, + "reason": null, + "target": { + "x": 1.0924072265625, + "y": 1.123779296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7011, + "pitch": null, + "reason": null, + "target": { + "x": 1.3050537109375, + "y": 0.6121826171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7011, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7013, + "pitch": null, + "reason": null, + "target": { + "x": 1.4725341796875, + "y": 0.4669189453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7013, + "pitch": null, + "reason": null, + "target": { + "x": 1.087158203125, + "y": 1.0904541015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7014, + "pitch": null, + "reason": null, + "target": { + "x": 1.5799560546875, + "y": 0.37841796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 65802, + "data": { + "TargetPoint": { + "x": 453749, + "y": 264224, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7014, + "otherUnit": null, + "sequence": 769, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 233393, + "y": 39062, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7016, + "otherUnit": null, + "sequence": 559, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7016, + "pitch": null, + "reason": null, + "target": { + "x": 1.0816650390625, + "y": 1.0552978515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7018, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7018, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7020, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7021, + "pitch": null, + "reason": null, + "target": { + "x": 0.800537109375, + "y": 1.7010498046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7022, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 93585409, + 95682561, + 96206849, + 96731137, + 97255425, + 97517576 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7024, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7024, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7025, + "otherUnit": null, + "sequence": 560, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7025, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 93585409 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7027, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7027, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7031, + "sequence": 561, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7031, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7032, + "sequence": 562, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7032, + "sequence": 563, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 95682561 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7033, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7033, + "sequence": 564, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 96206849, + 96731137 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0c" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7033, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7033, + "sequence": 565, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7033, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7035, + "pitch": null, + "reason": null, + "target": { + "x": 2.476318359375, + "y": 3.7227783203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7035, + "sequence": 566, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 97255425, + 97517576 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x30" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7035, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7036, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7036, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7039, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 124928, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 9961473, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7040, + "otherUnit": null, + "sequence": 770, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7042, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7042, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7044, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 87293955 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7046, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7046, + "pitch": null, + "reason": null, + "target": { + "x": 0.9188232421875, + "y": 0.9296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7046, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7047, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 0.9097900390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7048, + "pitch": null, + "reason": null, + "target": { + "x": 2.51171875, + "y": 3.7509765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7048, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7048, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.58837890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7050, + "pitch": null, + "reason": null, + "target": { + "x": 2.536865234375, + "y": 3.7711181640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7050, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7050, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3701171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7051, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3304443359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7054, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 0.8182373046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7055, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 0.6728515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7055, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7058, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7061, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7061, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.6693115234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7062, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7062, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.625244140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7065, + "pitch": null, + "reason": null, + "target": { + "x": 0.8253173828125, + "y": 1.7265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7065, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 18, + "unitLink": 43 + } + ], + "addUnitTags": [ + 93847556, + 94109698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7065, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7066, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7068, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 7, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7068, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7069, + "pitch": null, + "reason": null, + "target": { + "x": 0.8544921875, + "y": 1.7437744140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7069, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51380225, + 66846723, + 68681732, + 75235329, + 76808193 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7073, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 58720257, + 72351746 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7073, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7076, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7077, + "target": { + "x": 23.210205078125, + "y": 14.2213134765625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7077, + "sequence": 771, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7077, + "otherUnit": null, + "sequence": 772, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7080, + "pitch": null, + "reason": null, + "target": { + "x": 2.581298828125, + "y": 3.7857666015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 73138181, + 76021761, + 79953923 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7080, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7083, + "pitch": null, + "reason": null, + "target": { + "x": 2.64306640625, + "y": 3.78369140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 183710, + "y": 121815, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7083, + "otherUnit": null, + "sequence": 773, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 131328, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7083, + "otherUnit": null, + "sequence": 774, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7084, + "pitch": null, + "reason": null, + "target": { + "x": 2.8553466796875, + "y": 3.780517578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 70516739 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7084, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7085, + "pitch": null, + "reason": null, + "target": { + "x": 2.68994140625, + "y": 3.782470703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7085, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 116736, + "z": 40928 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 11272193, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7085, + "otherUnit": null, + "sequence": 775, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7085, + "pitch": null, + "reason": null, + "target": { + "x": 2.8553466796875, + "y": 3.780517578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7088, + "pitch": null, + "reason": null, + "target": { + "x": 2.72412109375, + "y": 3.7816162109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7088, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7089, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7091, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7092, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7094, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7095, + "pitch": null, + "reason": null, + "target": { + "x": 2.748779296875, + "y": 3.75732421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7095, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7096, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7096, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.785400390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7098, + "pitch": null, + "reason": null, + "target": { + "x": 2.7760009765625, + "y": 3.7242431640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7098, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.841064453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7099, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7099, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8758544921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7100, + "pitch": null, + "reason": null, + "target": { + "x": 2.8006591796875, + "y": 3.69189453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7100, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7102, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7102, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7103, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7106, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7107, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7107, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x03" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7111, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7113, + "pitch": null, + "reason": null, + "target": { + "x": 0.741943359375, + "y": 0.8758544921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7114, + "pitch": null, + "reason": null, + "target": { + "x": 0.8416748046875, + "y": 0.8758544921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7115, + "pitch": null, + "reason": null, + "target": { + "x": 2.9644775390625, + "y": 3.608642578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7115, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7115, + "pitch": null, + "reason": null, + "target": { + "x": 0.89501953125, + "y": 0.8758544921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7117, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 282624, + "y": 460800, + "z": 32768 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25952257, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7120, + "otherUnit": null, + "sequence": 567, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7120, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7120, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7122, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7124, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7126, + "pitch": null, + "reason": null, + "target": { + "x": 0.8175048828125, + "y": 3.6165771484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7128, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7132, + "pitch": null, + "reason": null, + "target": { + "x": 2.826416015625, + "y": 3.6585693359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7132, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7133, + "pitch": null, + "reason": null, + "target": { + "x": 2.8531494140625, + "y": 3.6378173828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7133, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7136, + "pitch": null, + "reason": null, + "target": { + "x": 2.884033203125, + "y": 3.6021728515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7137, + "pitch": null, + "reason": null, + "target": { + "x": 2.9068603515625, + "y": 3.571533203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51380225, + 66846723, + 68681732 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7137, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7137, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51118081, + 73138181, + 75235329, + 76021761, + 76808193, + 79953923, + 91488258 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7141, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 84934657 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7141, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7147, + "pitch": null, + "reason": null, + "target": { + "x": 2.9898681640625, + "y": 3.587646484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7147, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.0377197265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7150, + "pitch": null, + "reason": null, + "target": { + "x": 3.01171875, + "y": 3.5614013671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7151, + "otherUnit": null, + "sequence": 776, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7161, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 2.898681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 77594625 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7163, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7165, + "pitch": null, + "reason": null, + "target": { + "x": 1.4892578125, + "y": 2.8734130859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 223232, + "y": 104448, + "z": 40912 + }, + "snapshotUnitLink": 41, + "snapshotUpkeepPlayerId": 2, + "tag": 81526791, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7169, + "otherUnit": null, + "sequence": 777, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7172, + "pitch": null, + "reason": null, + "target": { + "x": 3.0423583984375, + "y": 3.534423828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7173, + "pitch": null, + "reason": null, + "target": { + "x": 3.0731201171875, + "y": 3.5208740234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7173, + "pitch": null, + "reason": null, + "target": { + "x": 2.2322998046875, + "y": 3.364013671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7173, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7174, + "pitch": null, + "reason": null, + "target": { + "x": 3.127197265625, + "y": 3.4915771484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7174, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7176, + "pitch": null, + "reason": null, + "target": { + "x": 3.1549072265625, + "y": 3.472900390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7177, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7177, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 4, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 165888, + "y": 374784, + "z": 40931 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7181, + "otherUnit": null, + "sequence": 568, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7184, + "pitch": null, + "reason": null, + "target": { + "x": 1.711669921875, + "y": 3.364013671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 75497473 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7187, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7188, + "pitch": null, + "reason": null, + "target": { + "x": 0.7818603515625, + "y": 0.828369140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7189, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 0.828369140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7189, + "pitch": null, + "reason": null, + "target": { + "x": 0.7818603515625, + "y": 0.828369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 72613890 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7191, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7192, + "pitch": null, + "reason": null, + "target": { + "x": 1.438720703125, + "y": 2.8734130859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7192, + "pitch": null, + "reason": null, + "target": { + "x": 1.2996826171875, + "y": 2.8734130859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7195, + "pitch": null, + "reason": null, + "target": { + "x": 1.2996826171875, + "y": 2.9239501953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7196, + "pitch": null, + "reason": null, + "target": { + "x": 1.2996826171875, + "y": 3.0472412109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 7196, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 29.25, + "y": 14.75, + "z": 4.994140625 + }, + "snapshotUnitLink": 41, + "snapshotUpkeepPlayerId": 2, + "tag": 97779714, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7196, + "sequence": 778, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7200, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7202, + "pitch": null, + "reason": null, + "target": { + "x": 0.814208984375, + "y": 0.828369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7203, + "pitch": null, + "reason": null, + "target": { + "x": 3.17578125, + "y": 3.4288330078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 387 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7204, + "otherUnit": null, + "sequence": 779, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 274275, + "y": 139394, + "z": 32774 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7206, + "otherUnit": null, + "sequence": 780, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [ + 3 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7207, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 210944, + "y": 423936, + "z": 40912 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 60555265, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7208, + "otherUnit": null, + "sequence": 569, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7210, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7211, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7214, + "target": { + "x": 23.01953125, + "y": 52.124755859375, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7214, + "sequence": 570, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7214, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7215, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7217, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7221, + "pitch": null, + "reason": null, + "target": { + "x": 3.1759033203125, + "y": 3.315185546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 70778883 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7221, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7222, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 0.7923583984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7222, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 0.75634765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7223, + "pitch": null, + "reason": null, + "target": { + "x": 3.20849609375, + "y": 3.298828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 99614721 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7223, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7225, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 0.706787109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7226, + "target": { + "x": 19.958740234375, + "y": 51.058837890625, + "z": 5.9066162109375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7226, + "sequence": 571, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7229, + "target": { + "x": 13.698974609375, + "y": 52.6162109375, + "z": 5.9937744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7229, + "sequence": 572, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7230, + "pitch": null, + "reason": null, + "target": { + "x": 0.8209228515625, + "y": 0.7950439453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7233, + "pitch": null, + "reason": null, + "target": { + "x": 1.2996826171875, + "y": 3.0977783203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 5, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 196608, + "y": 122880, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7233, + "otherUnit": null, + "sequence": 781, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7234, + "pitch": null, + "reason": null, + "target": { + "x": 1.2996826171875, + "y": 3.2115478515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7234, + "pitch": null, + "reason": null, + "target": { + "x": 0.8209228515625, + "y": 0.7576904296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 266, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 188416, + "y": 112640, + "z": 40920 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 11010049, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7237, + "otherUnit": null, + "sequence": 782, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7237, + "pitch": null, + "reason": null, + "target": { + "x": 0.8209228515625, + "y": 0.725830078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 4, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 153600, + "y": 448512, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7239, + "otherUnit": null, + "sequence": 573, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 90963969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7240, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7243, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7244, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7247, + "target": { + "x": 18.75, + "y": 53.25, + "z": 5.9970703125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7247, + "sequence": 574, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7247, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7248, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7251, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 0.773193359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7251, + "pitch": null, + "reason": null, + "target": { + "x": 3.1845703125, + "y": 3.275390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7251, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7252, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 0.837158203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7254, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 0.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7255, + "pitch": null, + "reason": null, + "target": { + "x": 3.16015625, + "y": 3.2498779296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7255, + "pitch": null, + "reason": null, + "target": { + "x": 0.8175048828125, + "y": 3.6165771484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 55836673 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7255, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7256, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7258, + "pitch": null, + "reason": null, + "target": { + "x": 3.134765625, + "y": 3.22119140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7258, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 65536, + "y": 124928, + "z": 49104 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 1, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7258, + "otherUnit": null, + "sequence": 783, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7259, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7260, + "pitch": null, + "reason": null, + "target": { + "x": 3.1107177734375, + "y": 3.1917724609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7260, + "pitch": null, + "reason": null, + "target": { + "x": 0.8209228515625, + "y": 0.764892578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 91226113 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7263, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7263, + "pitch": null, + "reason": null, + "target": { + "x": 3.0869140625, + "y": 3.159912109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 5, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 65536, + "y": 131072, + "z": 49094 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7263, + "otherUnit": null, + "sequence": 784, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7263, + "pitch": null, + "reason": null, + "target": { + "x": 0.8209228515625, + "y": 0.8056640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7265, + "pitch": null, + "reason": null, + "target": { + "x": 0.959716796875, + "y": 3.6165771484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7266, + "pitch": null, + "reason": null, + "target": { + "x": 3.064453125, + "y": 3.1275634765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7266, + "pitch": null, + "reason": null, + "target": { + "x": 1.247314453125, + "y": 3.6165771484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 266, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 65536, + "y": 124928, + "z": 49104 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 1, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7267, + "otherUnit": null, + "sequence": 785, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7267, + "pitch": null, + "reason": null, + "target": { + "x": 0.8209228515625, + "y": 0.849365234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 229058, + "y": 496067, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7269, + "otherUnit": null, + "sequence": 575, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7270, + "pitch": null, + "reason": null, + "target": { + "x": 0.7681884765625, + "y": 0.854736328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7270, + "pitch": null, + "reason": null, + "target": { + "x": 0.7393798828125, + "y": 0.8260498046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7270, + "pitch": null, + "reason": null, + "target": { + "x": 3.0418701171875, + "y": 3.0921630859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7271, + "pitch": null, + "reason": null, + "target": { + "x": 0.7010498046875, + "y": 0.78759765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7273, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.753173828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7273, + "pitch": null, + "reason": null, + "target": { + "x": 3.0230712890625, + "y": 3.060546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7273, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7274, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7274, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7274, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7275, + "pitch": null, + "reason": null, + "target": { + "x": 3.00732421875, + "y": 3.032470703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7275, + "pitch": null, + "reason": null, + "target": { + "x": 0.7396240234375, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7277, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7277, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7278, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7278, + "pitch": null, + "reason": null, + "target": { + "x": 0.7886962890625, + "y": 0.8486328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7280, + "pitch": null, + "reason": null, + "target": { + "x": 2.98828125, + "y": 2.996826171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7280, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7281, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x17" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7281, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7281, + "pitch": null, + "reason": null, + "target": { + "x": 0.760986328125, + "y": 0.8233642578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7282, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7284, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7284, + "pitch": null, + "reason": null, + "target": { + "x": 2.97119140625, + "y": 2.9632568359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 140 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7284, + "otherUnit": null, + "sequence": 786, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7284, + "pitch": null, + "reason": null, + "target": { + "x": 0.727294921875, + "y": 0.7913818359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 68 + } + ], + "addUnitTags": [ + 90963969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7285, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 68 + } + ], + "addUnitTags": [ + 90963969 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7285, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7286, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7286, + "pitch": null, + "reason": null, + "target": { + "x": 0.6964111328125, + "y": 0.76171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7288, + "pitch": null, + "reason": null, + "target": { + "x": 2.9560546875, + "y": 2.9327392578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 88064, + "y": 452608, + "z": 49104 + }, + "snapshotUnitLink": 122, + "snapshotUpkeepPlayerId": 1, + "tag": 49807361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7288, + "otherUnit": null, + "sequence": 576, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7289, + "userid": { + "userId": 0 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 148 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 141312, + "y": 104448, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7291, + "otherUnit": null, + "sequence": 787, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7292, + "pitch": null, + "reason": null, + "target": { + "x": 2.9417724609375, + "y": 2.903564453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7292, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7293, + "pitch": null, + "reason": null, + "target": { + "x": 0.72216796875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7293, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7293, + "pitch": null, + "reason": null, + "target": { + "x": 0.8548583984375, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7295, + "pitch": null, + "reason": null, + "target": { + "x": 0.94970703125, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7296, + "pitch": null, + "reason": null, + "target": { + "x": 2.9266357421875, + "y": 2.872314453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7296, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7296, + "pitch": null, + "reason": null, + "target": { + "x": 0.94970703125, + "y": 3.5472412109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 77070339, + 82313217 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7297, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7299, + "pitch": null, + "reason": null, + "target": { + "x": 1.453125, + "y": 3.109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 8, + "unitLink": 118 + } + ], + "addUnitTags": [ + 98828289 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7299, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7299, + "pitch": null, + "reason": null, + "target": { + "x": 2.9127197265625, + "y": 2.8436279296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7300, + "pitch": null, + "reason": null, + "target": { + "x": 0.7501220703125, + "y": 0.7877197265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 58720257, + 72351746, + 82051074 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7303, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7304, + "pitch": null, + "reason": null, + "target": { + "x": 2.897216796875, + "y": 2.8114013671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 96993285 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7304, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7304, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7307, + "pitch": null, + "reason": null, + "target": { + "x": 2.883056640625, + "y": 2.7818603515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7308, + "pitch": null, + "reason": null, + "target": { + "x": 1.353759765625, + "y": 0.9998779296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7308, + "otherUnit": null, + "sequence": 788, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7314, + "sequence": 789, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7314, + "sequence": 790, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 133120, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7315, + "otherUnit": null, + "sequence": 791, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 131328, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7315, + "otherUnit": null, + "sequence": 792, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7317, + "sequence": 793, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7317, + "sequence": 794, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7318, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7319, + "pitch": null, + "reason": null, + "target": { + "x": 1.2796630859375, + "y": 0.9329833984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7322, + "pitch": null, + "reason": null, + "target": { + "x": 1.3150634765625, + "y": 0.924072265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7323, + "pitch": null, + "reason": null, + "target": { + "x": 1.3507080078125, + "y": 0.9222412109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 20, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 55050241, + 55574529, + 55836673, + 56098817, + 56360961, + 56885249, + 57147393, + 57409537, + 59768834, + 61079553, + 62128129, + 62652417, + 64487426, + 65273859, + 66060290, + 70254593, + 89915393, + 91750401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7325, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7325, + "pitch": null, + "reason": null, + "target": { + "x": 1.3875732421875, + "y": 0.9224853515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7326, + "pitch": null, + "reason": null, + "target": { + "x": 1.428466796875, + "y": 0.9249267578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7332, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7333, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 6, + "abilLink": 153 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7333, + "otherUnit": null, + "sequence": 795, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7334, + "pitch": null, + "reason": null, + "target": { + "x": 1.4544677734375, + "y": 0.94287109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7336, + "sequence": 796, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 82313217 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7338, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7342, + "pitch": null, + "reason": null, + "target": { + "x": 1.4676513671875, + "y": 0.9720458984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 257 + }, + "cmdFlags": 131328, + "data": { + "TargetPoint": { + "x": 129024, + "y": 505856, + "z": 49094 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7342, + "otherUnit": null, + "sequence": 601, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7342, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7344, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8143310546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7345, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.9024658203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 134384, + "y": 164992, + "z": 49503 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7347, + "otherUnit": null, + "sequence": 797, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 21, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 56885249, + 57147393, + 57409537, + 59244545, + 61079553, + 62128129, + 62652417, + 64487426, + 65273859, + 66060290, + 70254593, + 89915393, + 91750401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7348, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7348, + "pitch": null, + "reason": null, + "target": { + "x": 1.4898681640625, + "y": 1.0035400390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7349, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7351, + "pitch": null, + "reason": null, + "target": { + "x": 1.5147705078125, + "y": 1.0299072265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7352, + "pitch": null, + "reason": null, + "target": { + "x": 1.5400390625, + "y": 1.0518798828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7352, + "pitch": null, + "reason": null, + "target": { + "x": 1.3824462890625, + "y": 3.036865234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7353, + "pitch": null, + "reason": null, + "target": { + "x": 2.622802734375, + "y": 2.173828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7355, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7355, + "pitch": null, + "reason": null, + "target": { + "x": 1.56884765625, + "y": 1.06982421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 5, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 126976, + "y": 147456, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7356, + "otherUnit": null, + "sequence": 798, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7358, + "pitch": null, + "reason": null, + "target": { + "x": 1.5087890625, + "y": 3.036865234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7359, + "pitch": null, + "reason": null, + "target": { + "x": 1.7647705078125, + "y": 3.036865234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 284557, + "y": 405563, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7360, + "otherUnit": null, + "sequence": 607, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7360, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7362, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7362, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7363, + "pitch": null, + "reason": null, + "target": { + "x": 0.747802734375, + "y": 0.9129638671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7364, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7364, + "pitch": null, + "reason": null, + "target": { + "x": 0.8011474609375, + "y": 0.9129638671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7366, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7366, + "pitch": null, + "reason": null, + "target": { + "x": 0.8602294921875, + "y": 0.9129638671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7366, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7367, + "pitch": null, + "reason": null, + "target": { + "x": 0.92529296875, + "y": 0.9129638671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7368, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 20, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 50331651, + 54525953, + 55050241, + 55312385, + 55574529, + 55836673, + 56098817, + 56360961, + 57147393, + 57409537, + 59244545, + 59768834, + 61079553, + 62128129, + 62652417, + 65273859, + 66060290, + 70254593, + 89915393, + 91750401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7370, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7370, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7370, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7371, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7373, + "pitch": null, + "reason": null, + "target": { + "x": 0.92529296875, + "y": 0.8421630859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7373, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7374, + "pitch": null, + "reason": null, + "target": { + "x": 0.92529296875, + "y": 0.803955078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 54263809 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7375, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7375, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7377, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7381, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7385, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7388, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.3934326171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7388, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7389, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7389, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.4755859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7392, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585, + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7393, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7396, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7397, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.35546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7399, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.2132568359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7400, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 2.928955078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 90963969 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7408, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 61865994 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7410, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7414, + "pitch": null, + "reason": null, + "target": { + "x": 1.91650390625, + "y": 3.1622314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7414, + "pitch": null, + "reason": null, + "target": { + "x": 2.622802734375, + "y": 2.132568359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7415, + "pitch": null, + "reason": null, + "target": { + "x": 1.91650390625, + "y": 3.1622314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7416, + "pitch": null, + "reason": null, + "target": { + "x": 2.6114501953125, + "y": 2.0950927734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 93323266 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7418, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7419, + "pitch": null, + "reason": null, + "target": { + "x": 2.5911865234375, + "y": 2.060546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7422, + "pitch": null, + "reason": null, + "target": { + "x": 2.5770263671875, + "y": 2.0306396484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 257 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 329728, + "y": 382976, + "z": 32720 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7423, + "otherUnit": null, + "sequence": 609, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7423, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7425, + "pitch": null, + "reason": null, + "target": { + "x": 1.600341796875, + "y": 1.0823974609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7426, + "pitch": null, + "reason": null, + "target": { + "x": 1.850830078125, + "y": 3.1622314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7426, + "pitch": null, + "reason": null, + "target": { + "x": 1.815673828125, + "y": 3.1622314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 222375, + "y": 121980, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7426, + "otherUnit": null, + "sequence": 835, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7427, + "pitch": null, + "reason": null, + "target": { + "x": 1.7796630859375, + "y": 3.1622314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7427, + "pitch": null, + "reason": null, + "target": { + "x": 2.56494140625, + "y": 1.9991455078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7427, + "pitch": null, + "reason": null, + "target": { + "x": 1.6380615234375, + "y": 1.082763671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7427, + "target": { + "x": 40.25, + "y": 49.25, + "z": 3.994140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7427, + "sequence": 610, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7430, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7431, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 2.8309326171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7433, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7433, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 2.685546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 130 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 226201, + "y": 119911, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7433, + "otherUnit": null, + "sequence": 836, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7433, + "pitch": null, + "reason": null, + "target": { + "x": 1.8779296875, + "y": 3.1622314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7434, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7434, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7434, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 2.4422607421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7437, + "pitch": null, + "reason": null, + "target": { + "x": 1.8414306640625, + "y": 3.1622314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7438, + "pitch": null, + "reason": null, + "target": { + "x": 1.73486328125, + "y": 3.1622314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7440, + "pitch": null, + "reason": null, + "target": { + "x": 1.697998046875, + "y": 3.1622314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7440, + "pitch": null, + "reason": null, + "target": { + "x": 1.675048828125, + "y": 1.085693359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 50593795 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7440, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7440, + "pitch": null, + "reason": null, + "target": { + "x": 1.8011474609375, + "y": 3.1622314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 98041857 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7441, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 210944, + "y": 133120, + "z": 40912 + }, + "snapshotUnitLink": 154, + "snapshotUpkeepPlayerId": 2, + "tag": 61341698, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7442, + "otherUnit": null, + "sequence": 837, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7444, + "pitch": null, + "reason": null, + "target": { + "x": 1.7633056640625, + "y": 3.1622314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7446, + "target": { + "x": 40.75, + "y": 40.25, + "z": 3.993896484375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7446, + "sequence": 611, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7448, + "pitch": null, + "reason": null, + "target": { + "x": 1.841796875, + "y": 2.483642578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 7448, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 28.5, + "y": 17.5, + "z": 4.994140625 + }, + "snapshotUnitLink": 40, + "snapshotUpkeepPlayerId": 2, + "tag": 86769665, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7448, + "sequence": 838, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7449, + "pitch": null, + "reason": null, + "target": { + "x": 1.706787109375, + "y": 1.0928955078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7449, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7449, + "pitch": null, + "reason": null, + "target": { + "x": 1.7301025390625, + "y": 3.1622314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 23, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 51118081, + 51380225, + 62390278, + 66846723, + 68681732, + 69468161, + 70516739, + 75235329, + 75759617, + 76021761, + 76808193, + 77332481, + 78643201, + 79953923, + 80216068, + 91488258, + 92274690, + 92536834, + 92798978, + 93585410, + 102498305, + 102760449, + 103022593 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7451, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 7451, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 27.25, + "y": 18.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 45, + "snapshotUpkeepPlayerId": 2, + "tag": 63963138, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7451, + "sequence": 839, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7452, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7453, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7453, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7455, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7456, + "target": { + "x": 27.642822265625, + "y": 15.0087890625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7456, + "sequence": 841, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7456, + "pitch": null, + "reason": null, + "target": { + "x": 1.6986083984375, + "y": 3.1622314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7457, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7457, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 130 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 224379, + "y": 120867, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7460, + "otherUnit": null, + "sequence": 842, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7462, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7463, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7464, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7467, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7467, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 210944, + "y": 423936, + "z": 40912 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 60555265, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7470, + "otherUnit": null, + "sequence": 612, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7470, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 26, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 74711041, + 51118081, + 51380225, + 62390278, + 66846723, + 68681732, + 69468161, + 70516739, + 75235329, + 75759617, + 76021761, + 76808193, + 77332481, + 78643201, + 79953923, + 80216068, + 81002499, + 91488258, + 92274690, + 92536834, + 92798978, + 93585410, + 95682562, + 102236161, + 102498305, + 102760449, + 103022593 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7471, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7471, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7472, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7474, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7474, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7475, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7477, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 8, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 93061122, + 96206850, + 100139009, + 100401153, + 100925441, + 101449729, + 103809025, + 104857601 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7479, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7479, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7481, + "pitch": null, + "reason": null, + "target": { + "x": 1.7335205078125, + "y": 1.113037109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7482, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7483, + "pitch": null, + "reason": null, + "target": { + "x": 1.6781005859375, + "y": 3.1893310546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7485, + "pitch": null, + "reason": null, + "target": { + "x": 1.6781005859375, + "y": 3.225341796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7485, + "otherUnit": null, + "sequence": 613, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7486, + "pitch": null, + "reason": null, + "target": { + "x": 1.6781005859375, + "y": 3.280517578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 93061122 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7486, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 126906, + "y": 129769, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7486, + "otherUnit": null, + "sequence": 843, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7487, + "sequence": 614, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7487, + "otherUnit": null, + "sequence": 844, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 96206850 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7489, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7490, + "sequence": 845, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7493, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.895751953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7493, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.8458251953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7493, + "pitch": null, + "reason": null, + "target": { + "x": 1.68994140625, + "y": 3.196533203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7494, + "sequence": 846, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7494, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.7935791015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7496, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.7437744140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7496, + "pitch": null, + "reason": null, + "target": { + "x": 1.6854248046875, + "y": 3.2274169921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 76546049 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7497, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7497, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7497, + "sequence": 847, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7497, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.6845703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7498, + "pitch": null, + "reason": null, + "target": { + "x": 1.6807861328125, + "y": 3.2606201171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 81264642 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7501, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7501, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7501, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7503, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7504, + "pitch": null, + "reason": null, + "target": { + "x": 2.1844482421875, + "y": 3.054443359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7505, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7505, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7507, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7508, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7511, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 278667, + "y": 398162, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7512, + "otherUnit": null, + "sequence": 615, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7515, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7518, + "pitch": null, + "reason": null, + "target": { + "x": 2.1844482421875, + "y": 3.21875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 100139009, + 100401153, + 100925441, + 101449729, + 103809025, + 104857601 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7518, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 27, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 74711041, + 51118081, + 51380225, + 62390278, + 65011714, + 66846723, + 68681732, + 69468161, + 70516739, + 75235329, + 75759617, + 76021761, + 76808193, + 77332481, + 79167492, + 79953923, + 80216068, + 81002499, + 91488258, + 92274690, + 92536834, + 92798978, + 93585410, + 95682562, + 102236161, + 102498305, + 102760449, + 103022593 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7519, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 12, + "unitLink": 45 + } + ], + "addUnitTags": [ + 63963138 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7519, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7519, + "pitch": null, + "reason": null, + "target": { + "x": 2.1844482421875, + "y": 3.49365234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7520, + "pitch": null, + "reason": null, + "target": { + "x": 2.1844482421875, + "y": 3.6358642578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7520, + "otherUnit": null, + "sequence": 616, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7522, + "pitch": null, + "reason": null, + "target": { + "x": 2.1844482421875, + "y": 3.784423828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 100139009 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7522, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7524, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7524, + "userid": { + "userId": 2 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 291174, + "y": 524287, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7524, + "otherUnit": null, + "sequence": 617, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7530, + "pitch": null, + "reason": null, + "target": { + "x": 2.21923828125, + "y": 3.784423828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7530, + "pitch": null, + "reason": null, + "target": { + "x": 2.364501953125, + "y": 3.784423828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7531, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7531, + "pitch": null, + "reason": null, + "target": { + "x": 2.5035400390625, + "y": 3.784423828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7533, + "pitch": null, + "reason": null, + "target": { + "x": 1.6781005859375, + "y": 3.2381591796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7533, + "pitch": null, + "reason": null, + "target": { + "x": 2.6268310546875, + "y": 3.784423828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 100401153, + 100925441, + 101449729, + 103809025, + 104857601 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7534, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7535, + "otherUnit": null, + "sequence": 618, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 100401153 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7537, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 372174, + "y": 524287, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7538, + "otherUnit": null, + "sequence": 619, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7539, + "pitch": null, + "reason": null, + "target": { + "x": 0.9957275390625, + "y": 0.5760498046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7541, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7544, + "pitch": null, + "reason": null, + "target": { + "x": 2.127197265625, + "y": 2.9793701171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7545, + "pitch": null, + "reason": null, + "target": { + "x": 2.19970703125, + "y": 1.4564208984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7545, + "target": { + "x": 35.8538818359375, + "y": 48.35986328125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7545, + "sequence": 620, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7548, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7549, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7549, + "pitch": null, + "reason": null, + "target": { + "x": 2.127197265625, + "y": 3.048828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7550, + "pitch": null, + "reason": null, + "target": { + "x": 1.0263671875, + "y": 0.61767578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7550, + "pitch": null, + "reason": null, + "target": { + "x": 2.127197265625, + "y": 3.2100830078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7552, + "pitch": null, + "reason": null, + "target": { + "x": 1.048583984375, + "y": 0.6480712890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7552, + "pitch": null, + "reason": null, + "target": { + "x": 2.127197265625, + "y": 3.345947265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7555, + "pitch": null, + "reason": null, + "target": { + "x": 1.0797119140625, + "y": 0.6834716796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 344 + } + ], + "addUnitTags": [ + 32505857 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7556, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7557, + "pitch": null, + "reason": null, + "target": { + "x": 2.464111328125, + "y": 3.381591796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7559, + "pitch": null, + "reason": null, + "target": { + "x": 2.464111328125, + "y": 3.381591796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7561, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7561, + "pitch": null, + "reason": null, + "target": { + "x": 2.127197265625, + "y": 3.4122314453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7564, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585, + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7564, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7565, + "target": { + "x": 35.411376953125, + "y": 52.91552734375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7565, + "sequence": 621, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7570, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 94896129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7571, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7574, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7576, + "pitch": null, + "reason": null, + "target": { + "x": 2.4273681640625, + "y": 3.36474609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7576, + "pitch": null, + "reason": null, + "target": { + "x": 2.240478515625, + "y": 2.9678955078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7576, + "target": { + "x": 32.080810546875, + "y": 45.083984375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7576, + "sequence": 622, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 99352577 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7576, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7578, + "pitch": null, + "reason": null, + "target": { + "x": 2.385009765625, + "y": 3.3223876953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7581, + "pitch": null, + "reason": null, + "target": { + "x": 2.1397705078125, + "y": 1.429443359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7581, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7581, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 237021, + "y": 135256, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7581, + "otherUnit": null, + "sequence": 924, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7582, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7583, + "pitch": null, + "reason": null, + "target": { + "x": 2.1097412109375, + "y": 1.418212890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7583, + "pitch": null, + "reason": null, + "target": { + "x": 1.0836181640625, + "y": 0.71826171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 243508, + "y": 113387, + "z": 40912 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7583, + "otherUnit": null, + "sequence": 623, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7585, + "pitch": null, + "reason": null, + "target": { + "x": 2.0654296875, + "y": 1.39501953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7586, + "pitch": null, + "reason": null, + "target": { + "x": 1.0911865234375, + "y": 0.751220703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7586, + "target": { + "x": 28.1602783203125, + "y": 14.7935791015625, + "z": 4.994140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7586, + "sequence": 624, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7586, + "pitch": null, + "reason": null, + "target": { + "x": 2.4351806640625, + "y": 3.361083984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7587, + "pitch": null, + "reason": null, + "target": { + "x": 2.0362548828125, + "y": 1.3724365234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7587, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7589, + "pitch": null, + "reason": null, + "target": { + "x": 1.9942626953125, + "y": 1.322998046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7589, + "pitch": null, + "reason": null, + "target": { + "x": 1.113037109375, + "y": 0.787841796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7590, + "pitch": null, + "reason": null, + "target": { + "x": 1.1317138671875, + "y": 0.825927734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7590, + "pitch": null, + "reason": null, + "target": { + "x": 2.1322021484375, + "y": 2.858642578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7590, + "pitch": null, + "reason": null, + "target": { + "x": 2.4053955078125, + "y": 3.338134765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7593, + "pitch": null, + "reason": null, + "target": { + "x": 1.1502685546875, + "y": 0.869384765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7593, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7594, + "pitch": null, + "reason": null, + "target": { + "x": 1.161376953125, + "y": 0.9000244140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7597, + "pitch": null, + "reason": null, + "target": { + "x": 2.3385009765625, + "y": 3.306396484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7597, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7597, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7598, + "pitch": null, + "reason": null, + "target": { + "x": 2.3033447265625, + "y": 3.306396484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7598, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7600, + "pitch": null, + "reason": null, + "target": { + "x": 2.2666015625, + "y": 3.306396484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7600, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 303920, + "y": 364720, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7601, + "otherUnit": null, + "sequence": 625, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7601, + "pitch": null, + "reason": null, + "target": { + "x": 2.379150390625, + "y": 3.3209228515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7602, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 219 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7602, + "otherUnit": null, + "sequence": 925, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7604, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7605, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7607, + "pitch": null, + "reason": null, + "target": { + "x": 2.3458251953125, + "y": 3.31591796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 90963969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7608, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7608, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.12939453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7608, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7609, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 3.2020263671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7609, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 2.9744873046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7609, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7611, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 3.2020263671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 59506689 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7612, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7612, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 2.885986328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7612, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7612, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 2.7469482421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7613, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7613, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 2.5921630859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7613, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7615, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 2.45947265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7615, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7616, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 3.2476806640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7616, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 82 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 208896, + "y": 108544, + "z": 40912 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10747905, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7616, + "otherUnit": null, + "sequence": 928, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7617, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 3.286865234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7619, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 3.3260498046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 90963969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7619, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 67371009 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7622, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7624, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 3.2340087890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7627, + "pitch": null, + "reason": null, + "target": { + "x": 1.1217041015625, + "y": 0.875732421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 343 + } + ], + "addUnitTags": [ + 10223617 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7627, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7628, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7628, + "pitch": null, + "reason": null, + "target": { + "x": 1.0953369140625, + "y": 0.84814453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7628, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7628, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 3.273681640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7630, + "pitch": null, + "reason": null, + "target": { + "x": 1.06982421875, + "y": 0.819580078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7631, + "pitch": null, + "reason": null, + "target": { + "x": 2.2811279296875, + "y": 2.7119140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 219841, + "y": 121535, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7631, + "otherUnit": null, + "sequence": 931, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7631, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 3.3067626953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 95420427 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7634, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7638, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 3.3636474609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 20, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 73400322, + 50855937, + 51642369, + 52166657, + 52428801, + 52690945, + 52953089, + 53739524, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63438849, + 67895300, + 69992449, + 71041025, + 73662467, + 78381058, + 86245378, + 86507522 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7638, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7641, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 257 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 260096, + "y": 350208, + "z": 32718 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7641, + "otherUnit": null, + "sequence": 626, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 130 + }, + "cmdFlags": 800, + "data": { + "Data": 68943876 + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7642, + "otherUnit": null, + "sequence": 932, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7645, + "userid": { + "userId": 0 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 233472, + "y": 143360, + "z": 40912 + }, + "snapshotUnitLink": 40, + "snapshotUpkeepPlayerId": 2, + "tag": 86769665, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7646, + "otherUnit": null, + "sequence": 933, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7646, + "pitch": null, + "reason": null, + "target": { + "x": 0.821044921875, + "y": 3.338134765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7648, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7649, + "pitch": null, + "reason": null, + "target": { + "x": 0.76904296875, + "y": 3.3701171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7649, + "pitch": null, + "reason": null, + "target": { + "x": 0.7314453125, + "y": 3.3701171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7650, + "pitch": null, + "reason": null, + "target": { + "x": 0.6986083984375, + "y": 3.3701171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7652, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 68943876 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7653, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7654, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7654, + "pitch": null, + "reason": null, + "target": { + "x": 0.804931640625, + "y": 3.366455078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7656, + "pitch": null, + "reason": null, + "target": { + "x": 2.3187255859375, + "y": 2.72802734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7657, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7657, + "target": { + "x": 28.5198974609375, + "y": 14.1103515625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7657, + "sequence": 934, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7658, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7658, + "pitch": null, + "reason": null, + "target": { + "x": 0.76513671875, + "y": 3.3695068359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 62914563, + 66322433, + 66584577, + 71565319, + 82837505, + 83099649, + 83361793, + 87818242, + 88080385, + 88604673, + 88866817, + 89391105 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7660, + "userid": { + "userId": 1 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 261553, + "y": 361038, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7660, + "otherUnit": null, + "sequence": 627, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7660, + "target": { + "x": 28.66162109375, + "y": 13.820068359375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7660, + "sequence": 935, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 114 + } + ], + "addUnitTags": [ + 68157445 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7661, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7661, + "pitch": null, + "reason": null, + "target": { + "x": 0.731689453125, + "y": 3.3699951171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7663, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7664, + "pitch": null, + "reason": null, + "target": { + "x": 1.923095703125, + "y": 2.1412353515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7665, + "pitch": null, + "reason": null, + "target": { + "x": 0.699951171875, + "y": 3.3699951171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7671, + "mask": { + "OneIndices": [ + 13 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7675, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7679, + "target": { + "x": 28.9764404296875, + "y": 16.2205810546875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7679, + "sequence": 936, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 114 + } + ], + "addUnitTags": [ + 68157445 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7680, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 111 + } + ], + "addUnitTags": [ + 60817410 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7684, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7684, + "pitch": null, + "reason": null, + "target": { + "x": 1.9228515625, + "y": 2.0899658203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7684, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 7684, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 29.25, + "y": 14.75, + "z": 4.994140625 + }, + "snapshotUnitLink": 41, + "snapshotUpkeepPlayerId": 2, + "tag": 97779714, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7684, + "sequence": 937, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7686, + "pitch": null, + "reason": null, + "target": { + "x": 1.921630859375, + "y": 2.0482177734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7687, + "pitch": null, + "reason": null, + "target": { + "x": 1.9210205078125, + "y": 1.966064453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 89128963, + 100925441, + 101449729, + 103809025, + 104857601 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7687, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 7687, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 29.25, + "y": 14.75, + "z": 4.994140625 + }, + "snapshotUnitLink": 41, + "snapshotUpkeepPlayerId": 2, + "tag": 97779714, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7687, + "sequence": 938, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7689, + "pitch": null, + "reason": null, + "target": { + "x": 1.922607421875, + "y": 1.9222412109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7690, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7690, + "pitch": null, + "reason": null, + "target": { + "x": 1.92529296875, + "y": 1.8345947265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 4, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7690, + "otherUnit": null, + "sequence": 628, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 7690, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 29.25, + "y": 14.75, + "z": 4.994140625 + }, + "snapshotUnitLink": 41, + "snapshotUpkeepPlayerId": 2, + "tag": 97779714, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7690, + "sequence": 939, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 89128963 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7691, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7693, + "pitch": null, + "reason": null, + "target": { + "x": 2.2427978515625, + "y": 2.6976318359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7693, + "pitch": null, + "reason": null, + "target": { + "x": 1.92529296875, + "y": 1.7794189453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 110 + } + ], + "addUnitTags": [ + 60030978 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7694, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7694, + "sequence": 629, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 7694, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 29.25, + "y": 14.75, + "z": 4.994140625 + }, + "snapshotUnitLink": 41, + "snapshotUpkeepPlayerId": 2, + "tag": 97779714, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7694, + "sequence": 940, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7695, + "pitch": null, + "reason": null, + "target": { + "x": 2.212890625, + "y": 2.6849365234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 100925441 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7695, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7697, + "sequence": 630, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 101449729 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7698, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7700, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7700, + "pitch": null, + "reason": null, + "target": { + "x": 2.1776123046875, + "y": 2.6639404296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7700, + "sequence": 631, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7701, + "pitch": null, + "reason": null, + "target": { + "x": 2.1497802734375, + "y": 2.640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 103809025 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7701, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 376 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7701, + "otherUnit": null, + "sequence": 941, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7705, + "pitch": null, + "reason": null, + "target": { + "x": 2.1160888671875, + "y": 2.6083984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 99352577 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7705, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7706, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7709, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 67371009 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7712, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 114 + } + ], + "addUnitTags": [ + 68157445 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7715, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7716, + "pitch": null, + "reason": null, + "target": { + "x": 2.08984375, + "y": 2.58740234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 237568, + "y": 135168, + "z": 40906 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7716, + "otherUnit": null, + "sequence": 942, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7719, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 184 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7720, + "otherUnit": null, + "sequence": 632, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 225194, + "y": 126995, + "z": 40912 + }, + "snapshotUnitLink": 67, + "snapshotUpkeepPlayerId": 2, + "tag": 72613890, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7721, + "otherUnit": null, + "sequence": 943, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 387 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7721, + "otherUnit": null, + "sequence": 944, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7723, + "pitch": null, + "reason": null, + "target": { + "x": 1.505615234375, + "y": 3.261962890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7724, + "pitch": null, + "reason": null, + "target": { + "x": 1.909912109375, + "y": 1.7305908203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7724, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 1.68798828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 219644, + "y": 123029, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7724, + "otherUnit": null, + "sequence": 945, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7724, + "pitch": null, + "reason": null, + "target": { + "x": 1.505615234375, + "y": 3.261962890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7726, + "pitch": null, + "reason": null, + "target": { + "x": 1.8804931640625, + "y": 1.6427001953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7726, + "pitch": null, + "reason": null, + "target": { + "x": 2.112060546875, + "y": 1.3463134765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7727, + "pitch": null, + "reason": null, + "target": { + "x": 1.8773193359375, + "y": 1.20751953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 130 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 223728, + "y": 120351, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7730, + "otherUnit": null, + "sequence": 947, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7731, + "pitch": null, + "reason": null, + "target": { + "x": 2.0531005859375, + "y": 2.6009521484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7734, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7735, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.18212890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7735, + "pitch": null, + "reason": null, + "target": { + "x": 1.87255859375, + "y": 1.6097412109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7736, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7736, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7736, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.18212890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7739, + "pitch": null, + "reason": null, + "target": { + "x": 1.865234375, + "y": 1.57470703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 67371009 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7741, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 99090433 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7742, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7743, + "pitch": null, + "reason": null, + "target": { + "x": 1.8609619140625, + "y": 1.54052734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7745, + "pitch": null, + "reason": null, + "target": { + "x": 1.8773193359375, + "y": 1.0526123046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 249687, + "y": 128758, + "z": 40924 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7746, + "otherUnit": null, + "sequence": 635, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7747, + "pitch": null, + "reason": null, + "target": { + "x": 1.8580322265625, + "y": 1.5040283203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 94896129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7750, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7750, + "target": { + "x": 29.8577880859375, + "y": 16.7037353515625, + "z": 4.9967041015625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7750, + "sequence": 636, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7752, + "pitch": null, + "reason": null, + "target": { + "x": 1.856201171875, + "y": 1.4642333984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7753, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.24609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7754, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.280517578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7756, + "pitch": null, + "reason": null, + "target": { + "x": 1.8564453125, + "y": 1.4239501953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7757, + "target": { + "x": 29.7471923828125, + "y": 16.799560546875, + "z": 4.9962158203125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7757, + "sequence": 637, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 120 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 223728, + "y": 120351, + "z": 56272 + }, + "snapshotUnitLink": 76, + "snapshotUpkeepPlayerId": 2, + "tag": 82575361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7758, + "otherUnit": null, + "sequence": 948, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7760, + "pitch": null, + "reason": null, + "target": { + "x": 1.857177734375, + "y": 1.3839111328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7761, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.216552734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585, + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7762, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7764, + "pitch": null, + "reason": null, + "target": { + "x": 1.8580322265625, + "y": 1.3443603515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7764, + "target": { + "x": 30.3348388671875, + "y": 17.1456298828125, + "z": 4.8775634765625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7764, + "sequence": 638, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 266, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 208896, + "y": 108544, + "z": 40912 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10747905, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7764, + "otherUnit": null, + "sequence": 949, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7765, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.25390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7767, + "target": { + "x": 31.7113037109375, + "y": 17.795654296875, + "z": 4.3709716796875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7767, + "sequence": 639, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7768, + "pitch": null, + "reason": null, + "target": { + "x": 1.858642578125, + "y": 1.308349609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 94896129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7769, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7769, + "target": { + "x": 33.5230712890625, + "y": 18.4447021484375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7769, + "sequence": 640, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7769, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7769, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7772, + "pitch": null, + "reason": null, + "target": { + "x": 1.8612060546875, + "y": 1.271240234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7772, + "target": { + "x": 34.1756591796875, + "y": 18.59765625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7772, + "sequence": 641, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7772, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7773, + "pitch": null, + "reason": null, + "target": { + "x": 1.6954345703125, + "y": 1.114013671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7773, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7775, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7775, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7775, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7776, + "pitch": null, + "reason": null, + "target": { + "x": 1.8731689453125, + "y": 1.2373046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7779, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 7782, + "pitch": null, + "reason": null, + "target": { + "x": 1.8939208984375, + "y": 1.20947265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7783, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7783, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7784, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7786, + "pitch": null, + "reason": null, + "target": { + "x": 1.9954833984375, + "y": 2.699951171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7787, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7788, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7788, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7790, + "pitch": null, + "reason": null, + "target": { + "x": 1.7283935546875, + "y": 1.0975341796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7790, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7791, + "pitch": null, + "reason": null, + "target": { + "x": 1.757568359375, + "y": 1.0750732421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7791, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 25 + } + ], + "addUnitTags": [ + 53477380 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7791, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7793, + "pitch": null, + "reason": null, + "target": { + "x": 1.858154296875, + "y": 1.1622314453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7794, + "pitch": null, + "reason": null, + "target": { + "x": 1.7861328125, + "y": 1.048828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7794, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7795, + "pitch": null, + "reason": null, + "target": { + "x": 1.8773193359375, + "y": 3.6209716796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7795, + "pitch": null, + "reason": null, + "target": { + "x": 1.821533203125, + "y": 1.12890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7795, + "pitch": null, + "reason": null, + "target": { + "x": 1.79638671875, + "y": 1.1087646484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7797, + "pitch": null, + "reason": null, + "target": { + "x": 1.769287109375, + "y": 1.089599609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 59 + } + ], + "addUnitTags": [ + 72089602 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7797, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7797, + "pitch": null, + "reason": null, + "target": { + "x": 1.8773193359375, + "y": 3.6209716796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7798, + "pitch": null, + "reason": null, + "target": { + "x": 1.7342529296875, + "y": 1.0650634765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 310170, + "y": 128991, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7798, + "otherUnit": null, + "sequence": 642, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7799, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7801, + "pitch": null, + "reason": null, + "target": { + "x": 1.69970703125, + "y": 1.0374755859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7801, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7801, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.8782958984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7802, + "pitch": null, + "reason": null, + "target": { + "x": 1.67333984375, + "y": 1.01220703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7802, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.7901611328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7803, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7805, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7806, + "pitch": null, + "reason": null, + "target": { + "x": 1.64990234375, + "y": 0.9879150390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7808, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7809, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7809, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7810, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7812, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7812, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 95944707 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7813, + "userid": { + "userId": 0 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 267514, + "y": 359777, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7813, + "otherUnit": null, + "sequence": 643, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 7, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7816, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7817, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 154 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7819, + "otherUnit": null, + "sequence": 950, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 6, + "abilLink": 154 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7820, + "otherUnit": null, + "sequence": 951, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7823, + "pitch": null, + "reason": null, + "target": { + "x": 1.8773193359375, + "y": 3.5849609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7824, + "pitch": null, + "reason": null, + "target": { + "x": 1.8773193359375, + "y": 3.5194091796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7824, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.8515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7825, + "pitch": null, + "reason": null, + "target": { + "x": 1.8485107421875, + "y": 3.4833984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7825, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.900390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7827, + "pitch": null, + "reason": null, + "target": { + "x": 1.8109130859375, + "y": 3.44580078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7827, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7828, + "pitch": null, + "reason": null, + "target": { + "x": 1.7445068359375, + "y": 3.37939453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 8, + "unitLink": 118 + } + ], + "addUnitTags": [ + 98828289 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7831, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7831, + "pitch": null, + "reason": null, + "target": { + "x": 1.870361328125, + "y": 3.589599609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7832, + "pitch": null, + "reason": null, + "target": { + "x": 0.8818359375, + "y": 1.2119140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7832, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 67371010 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7832, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7834, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7834, + "pitch": null, + "reason": null, + "target": { + "x": 1.8489990234375, + "y": 3.54833984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7835, + "pitch": null, + "reason": null, + "target": { + "x": 2.03173828125, + "y": 2.691650390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7835, + "pitch": null, + "reason": null, + "target": { + "x": 1.82861328125, + "y": 3.513916015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7838, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7838, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7838, + "pitch": null, + "reason": null, + "target": { + "x": 1.8038330078125, + "y": 3.4736328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7839, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7839, + "pitch": null, + "reason": null, + "target": { + "x": 1.7796630859375, + "y": 3.4351806640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7840, + "pitch": null, + "reason": null, + "target": { + "x": 1.7373046875, + "y": 3.3465576171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7842, + "pitch": null, + "reason": null, + "target": { + "x": 1.7044677734375, + "y": 3.313720703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7842, + "pitch": null, + "reason": null, + "target": { + "x": 0.71923828125, + "y": 3.4293212890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 101187587 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7842, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7842, + "pitch": null, + "reason": null, + "target": { + "x": 1.7552490234375, + "y": 3.3963623046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7843, + "pitch": null, + "reason": null, + "target": { + "x": 1.6373291015625, + "y": 3.24658203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7845, + "pitch": null, + "reason": null, + "target": { + "x": 1.73681640625, + "y": 3.365478515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 94371841 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7847, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7849, + "pitch": null, + "reason": null, + "target": { + "x": 1.7119140625, + "y": 3.3311767578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7850, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 177642, + "y": 146038, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7851, + "otherUnit": null, + "sequence": 954, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7851, + "pitch": null, + "reason": null, + "target": { + "x": 1.6875, + "y": 3.302490234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7853, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7854, + "pitch": null, + "reason": null, + "target": { + "x": 0.83984375, + "y": 1.183349609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7854, + "pitch": null, + "reason": null, + "target": { + "x": 1.661376953125, + "y": 3.2733154296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7855, + "pitch": null, + "reason": null, + "target": { + "x": 0.8031005859375, + "y": 1.1563720703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 91226113 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7857, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7857, + "pitch": null, + "reason": null, + "target": { + "x": 1.64013671875, + "y": 3.249755859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 25, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 74711041, + 51118081, + 51380225, + 62390278, + 66846723, + 68681732, + 69468161, + 70516739, + 75235329, + 75759617, + 76021761, + 76808193, + 78643201, + 79953923, + 80216068, + 91488258, + 92274690, + 92536834, + 92798978, + 93061123, + 93585410, + 95682562, + 102236161, + 102498305, + 102760449, + 103022593 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7858, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7858, + "pitch": null, + "reason": null, + "target": { + "x": 0.7491455078125, + "y": 1.1031494140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 94896129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7858, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7858, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7860, + "pitch": null, + "reason": null, + "target": { + "x": 0.713134765625, + "y": 1.052978515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7861, + "pitch": null, + "reason": null, + "target": { + "x": 0.69140625, + "y": 1.022216796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7862, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.9854736328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7862, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [ + 5 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7864, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7865, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7868, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.9539794921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7868, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 98 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 282624, + "y": 419840, + "z": 32768 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25165825, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7869, + "otherUnit": null, + "sequence": 644, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7869, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 114 + } + ], + "addUnitTags": [ + 68157445 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7871, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7872, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7873, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x03" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7875, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7875, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7876, + "pitch": null, + "reason": null, + "target": { + "x": 0.7242431640625, + "y": 0.9862060546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7877, + "pitch": null, + "reason": null, + "target": { + "x": 0.8172607421875, + "y": 1.0311279296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7877, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7879, + "pitch": null, + "reason": null, + "target": { + "x": 0.9027099609375, + "y": 1.067138671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7880, + "pitch": null, + "reason": null, + "target": { + "x": 0.94921875, + "y": 1.0919189453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 7880, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 34.5, + "y": 56.25, + "z": 4 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25952257, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7880, + "sequence": 645, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7884, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7886, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7887, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7017822265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7888, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.649658203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7890, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.6171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7890, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 66846723, + 75235329, + 76021761, + 76808193, + 103022593 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7891, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7892, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7894, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7895, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.66357421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7895, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7897, + "pitch": null, + "reason": null, + "target": { + "x": 2.464111328125, + "y": 3.4215087890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 93061123 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7897, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7897, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7156982421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7898, + "pitch": null, + "reason": null, + "target": { + "x": 0.8974609375, + "y": 1.0709228515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7898, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7898, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7586669921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7898, + "pitch": null, + "reason": null, + "target": { + "x": 2.464111328125, + "y": 3.4215087890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7899, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7901, + "pitch": null, + "reason": null, + "target": { + "x": 0.83447265625, + "y": 1.0589599609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 82313217 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7906, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 80216068, + 91488258, + 93585410 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7907, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7909, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 7910, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 12.75, + "y": 14.75, + "z": 5.994140625 + }, + "snapshotUnitLink": 48, + "snapshotUpkeepPlayerId": 2, + "tag": 64749569, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7910, + "sequence": 955, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7913, + "target": { + "x": 11.1666259765625, + "y": 15.8521728515625, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7913, + "sequence": 956, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 94896129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7914, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7916, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7917, + "pitch": null, + "reason": null, + "target": { + "x": 2.4185791015625, + "y": 3.391845703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7918, + "pitch": null, + "reason": null, + "target": { + "x": 2.3809814453125, + "y": 3.354248046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7920, + "pitch": null, + "reason": null, + "target": { + "x": 2.34814453125, + "y": 3.321533203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 90112, + "y": 131072, + "z": 49094 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7920, + "otherUnit": null, + "sequence": 957, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7921, + "pitch": null, + "reason": null, + "target": { + "x": 2.31298828125, + "y": 3.2862548828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7922, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7924, + "pitch": null, + "reason": null, + "target": { + "x": 1.8580322265625, + "y": 0.902099609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7924, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7925, + "pitch": null, + "reason": null, + "target": { + "x": 1.271728515625, + "y": 1.07568359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7925, + "pitch": null, + "reason": null, + "target": { + "x": 2.4307861328125, + "y": 3.3934326171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 278412, + "y": 437419, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7928, + "otherUnit": null, + "sequence": 646, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7928, + "pitch": null, + "reason": null, + "target": { + "x": 2.398193359375, + "y": 3.364013671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7931, + "pitch": null, + "reason": null, + "target": { + "x": 2.3741455078125, + "y": 3.3421630859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7932, + "pitch": null, + "reason": null, + "target": { + "x": 2.3480224609375, + "y": 3.3182373046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7933, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585, + 69206018 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7935, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7935, + "pitch": null, + "reason": null, + "target": { + "x": 2.323486328125, + "y": 3.2958984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7938, + "pitch": null, + "reason": null, + "target": { + "x": 1.834716796875, + "y": 0.9234619140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7939, + "pitch": null, + "reason": null, + "target": { + "x": 1.7833251953125, + "y": 0.9405517578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7939, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 7940, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 34, + "y": 52.75, + "z": 4 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25427969, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7940, + "sequence": 647, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 94896129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7942, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7942, + "pitch": null, + "reason": null, + "target": { + "x": 1.7353515625, + "y": 0.9561767578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7943, + "pitch": null, + "reason": null, + "target": { + "x": 1.701171875, + "y": 0.967041015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7943, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 96206851, + 104071170, + 106168321, + 106430465 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7943, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7947, + "pitch": null, + "reason": null, + "target": { + "x": 1.6676025390625, + "y": 0.98046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7947, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 188689, + "y": 147876, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7947, + "otherUnit": null, + "sequence": 958, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7950, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7950, + "target": { + "x": 23.2413330078125, + "y": 18.142822265625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7950, + "sequence": 959, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7951, + "pitch": null, + "reason": null, + "target": { + "x": 2.2689208984375, + "y": 3.2862548828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7951, + "pitch": null, + "reason": null, + "target": { + "x": 2.2344970703125, + "y": 3.2862548828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7953, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7954, + "target": { + "x": 23.1766357421875, + "y": 18.0714111328125, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7954, + "sequence": 960, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7954, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7958, + "pitch": null, + "reason": null, + "target": { + "x": 2.2879638671875, + "y": 3.2862548828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7959, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 112 + } + ], + "addUnitTags": [ + 97255426 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7961, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7961, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7962, + "pitch": null, + "reason": null, + "target": { + "x": 1.219482421875, + "y": 1.0872802734375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7962, + "pitch": null, + "reason": null, + "target": { + "x": 2.256591796875, + "y": 3.2862548828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7964, + "pitch": null, + "reason": null, + "target": { + "x": 1.486083984375, + "y": 3.3416748046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 177 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7964, + "otherUnit": null, + "sequence": 648, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7964, + "pitch": null, + "reason": null, + "target": { + "x": 1.1707763671875, + "y": 1.1361083984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7964, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7965, + "pitch": null, + "reason": null, + "target": { + "x": 1.8092041015625, + "y": 1.0325927734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7965, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7965, + "pitch": null, + "reason": null, + "target": { + "x": 1.117431640625, + "y": 1.2415771484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7965, + "pitch": null, + "reason": null, + "target": { + "x": 1.486083984375, + "y": 3.3416748046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7966, + "pitch": null, + "reason": null, + "target": { + "x": 1.117431640625, + "y": 1.2972412109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7968, + "pitch": null, + "reason": null, + "target": { + "x": 1.117431640625, + "y": 1.34716796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7968, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7969, + "pitch": null, + "reason": null, + "target": { + "x": 1.117431640625, + "y": 1.3935546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 112 + } + ], + "addUnitTags": [ + 96731138 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7970, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 87293955 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7972, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7972, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7972, + "target": { + "x": 16.558837890625, + "y": 23.30517578125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7972, + "sequence": 961, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 177 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7973, + "otherUnit": null, + "sequence": 649, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7976, + "pitch": null, + "reason": null, + "target": { + "x": 1.5257568359375, + "y": 3.3416748046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7976, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7976, + "target": { + "x": 16.18701171875, + "y": 22.326171875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7976, + "sequence": 962, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7977, + "pitch": null, + "reason": null, + "target": { + "x": 1.56494140625, + "y": 3.3416748046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7977, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7980, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 0.995849609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7980, + "pitch": null, + "reason": null, + "target": { + "x": 2.0445556640625, + "y": 2.6915283203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7981, + "pitch": null, + "reason": null, + "target": { + "x": 1.581787109375, + "y": 3.291259765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7981, + "pitch": null, + "reason": null, + "target": { + "x": 1.7979736328125, + "y": 0.9620361328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 234978, + "y": 356324, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7981, + "otherUnit": null, + "sequence": 650, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7981, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7984, + "pitch": null, + "reason": null, + "target": { + "x": 1.7626953125, + "y": 0.875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7984, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7985, + "pitch": null, + "reason": null, + "target": { + "x": 1.74169921875, + "y": 0.8472900390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 7985, + "target": { + "x": 28.7518310546875, + "y": 43.515625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7985, + "sequence": 651, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7985, + "pitch": null, + "reason": null, + "target": { + "x": 1.5185546875, + "y": 3.3370361328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7987, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7990, + "otherUnit": null, + "sequence": 963, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 65 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7991, + "otherUnit": null, + "sequence": 652, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7991, + "pitch": null, + "reason": null, + "target": { + "x": 1.550537109375, + "y": 3.3160400390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 62914563 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7992, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 62914563 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7992, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7992, + "sequence": 964, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 7994, + "sequence": 653, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7995, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 66322433 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7995, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 66322433 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 7995, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7995, + "pitch": null, + "reason": null, + "target": { + "x": 1.576416015625, + "y": 3.2955322265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 7996, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 241887, + "y": 375312, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 7998, + "otherUnit": null, + "sequence": 654, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7998, + "pitch": null, + "reason": null, + "target": { + "x": 1.533935546875, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7999, + "pitch": null, + "reason": null, + "target": { + "x": 1.6265869140625, + "y": 3.264892578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7999, + "pitch": null, + "reason": null, + "target": { + "x": 1.70947265625, + "y": 0.8427734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7999, + "pitch": null, + "reason": null, + "target": { + "x": 1.6790771484375, + "y": 0.396728515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 7999, + "pitch": null, + "reason": null, + "target": { + "x": 1.4793701171875, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8000, + "pitch": null, + "reason": null, + "target": { + "x": 1.663330078125, + "y": 3.264892578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 62914563 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8000, + "userid": { + "userId": 1 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 141312, + "y": 124928, + "z": 49120 + }, + "snapshotUnitLink": 42, + "snapshotUpkeepPlayerId": 2, + "tag": 59506689, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8000, + "otherUnit": null, + "sequence": 965, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8002, + "pitch": null, + "reason": null, + "target": { + "x": 1.6993408203125, + "y": 3.264892578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 66322433 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8003, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8003, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8005, + "pitch": null, + "reason": null, + "target": { + "x": 1.6231689453125, + "y": 0.860107421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8007, + "pitch": null, + "reason": null, + "target": { + "x": 1.6993408203125, + "y": 3.218505859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8007, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8007, + "pitch": null, + "reason": null, + "target": { + "x": 1.613037109375, + "y": 3.2823486328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8009, + "pitch": null, + "reason": null, + "target": { + "x": 1.6993408203125, + "y": 3.1800537109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8009, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8009, + "pitch": null, + "reason": null, + "target": { + "x": 0.9970703125, + "y": 3.350341796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8010, + "pitch": null, + "reason": null, + "target": { + "x": 1.7177734375, + "y": 3.112060546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8010, + "pitch": null, + "reason": null, + "target": { + "x": 0.7623291015625, + "y": 3.3304443359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8011, + "pitch": null, + "reason": null, + "target": { + "x": 1.7481689453125, + "y": 3.0816650390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [ + 1 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8011, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8011, + "pitch": null, + "reason": null, + "target": { + "x": 1.64501953125, + "y": 3.2705078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8013, + "pitch": null, + "reason": null, + "target": { + "x": 1.7864990234375, + "y": 3.0433349609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8016, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8016, + "pitch": null, + "reason": null, + "target": { + "x": 1.672607421875, + "y": 3.2344970703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 54001665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8017, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 62914563 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8017, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8017, + "pitch": null, + "reason": null, + "target": { + "x": 1.6890869140625, + "y": 3.2076416015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8020, + "pitch": null, + "reason": null, + "target": { + "x": 1.65625, + "y": 0.88037109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8020, + "pitch": null, + "reason": null, + "target": { + "x": 1.6915283203125, + "y": 0.8916015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8020, + "pitch": null, + "reason": null, + "target": { + "x": 2.0445556640625, + "y": 2.5650634765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8020, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8020, + "pitch": null, + "reason": null, + "target": { + "x": 1.7076416015625, + "y": 3.1767578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8021, + "pitch": null, + "reason": null, + "target": { + "x": 2.0445556640625, + "y": 2.2965087890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8021, + "pitch": null, + "reason": null, + "target": { + "x": 1.7286376953125, + "y": 3.141357421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8022, + "pitch": null, + "reason": null, + "target": { + "x": 1.8392333984375, + "y": 0.9117431640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8022, + "pitch": null, + "reason": null, + "target": { + "x": 2.0445556640625, + "y": 2.157470703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8024, + "pitch": null, + "reason": null, + "target": { + "x": 1.9134521484375, + "y": 0.914794921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8024, + "pitch": null, + "reason": null, + "target": { + "x": 2.0445556640625, + "y": 2.0216064453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8024, + "pitch": null, + "reason": null, + "target": { + "x": 1.7493896484375, + "y": 3.1063232421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8025, + "pitch": null, + "reason": null, + "target": { + "x": 2.1085205078125, + "y": 0.91552734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8025, + "target": { + "x": 15.6978759765625, + "y": 13.92431640625, + "z": 5.99658203125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8025, + "sequence": 966, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8025, + "pitch": null, + "reason": null, + "target": { + "x": 1.7685546875, + "y": 3.0736083984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8026, + "pitch": null, + "reason": null, + "target": { + "x": 2.1527099609375, + "y": 0.9102783203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8028, + "pitch": null, + "reason": null, + "target": { + "x": 2.2052001953125, + "y": 0.9034423828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8028, + "target": { + "x": 30.0714111328125, + "y": 32.8087158203125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8028, + "sequence": 655, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8029, + "pitch": null, + "reason": null, + "target": { + "x": 1.7852783203125, + "y": 3.045166015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8031, + "target": { + "x": 29.5120849609375, + "y": 33.4921875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8031, + "sequence": 656, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 8, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 66846723, + 75235329, + 76021761, + 76808193, + 80216068, + 93061123, + 93585410, + 103022593 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8032, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8032, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8033, + "target": { + "x": 29.3741455078125, + "y": 33.4117431640625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8033, + "sequence": 657, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8035, + "pitch": null, + "reason": null, + "target": { + "x": 1.83935546875, + "y": 3.021728515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8036, + "pitch": null, + "reason": null, + "target": { + "x": 1.9136962890625, + "y": 3.021728515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8036, + "target": { + "x": 29.4478759765625, + "y": 33.2508544921875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8036, + "sequence": 658, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8036, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8036, + "pitch": null, + "reason": null, + "target": { + "x": 0.6978759765625, + "y": 0.785400390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8037, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8037, + "pitch": null, + "reason": null, + "target": { + "x": 0.75244140625, + "y": 0.83984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8039, + "pitch": null, + "reason": null, + "target": { + "x": 1.9825439453125, + "y": 3.021728515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8039, + "target": { + "x": 29.68212890625, + "y": 32.6639404296875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8039, + "sequence": 659, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8039, + "pitch": null, + "reason": null, + "target": { + "x": 0.8115234375, + "y": 0.83984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8040, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8042, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8043, + "pitch": null, + "reason": null, + "target": { + "x": 2.0445556640625, + "y": 1.9046630859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8043, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8043, + "pitch": null, + "reason": null, + "target": { + "x": 1.8193359375, + "y": 3.0374755859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8044, + "pitch": null, + "reason": null, + "target": { + "x": 2.0445556640625, + "y": 1.768798828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8044, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8046, + "pitch": null, + "reason": null, + "target": { + "x": 2.1617431640625, + "y": 0.92529296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8046, + "pitch": null, + "reason": null, + "target": { + "x": 1.8607177734375, + "y": 3.032958984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8047, + "pitch": null, + "reason": null, + "target": { + "x": 2.117431640625, + "y": 0.9432373046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8048, + "pitch": null, + "reason": null, + "target": { + "x": 2.043212890625, + "y": 0.969482421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8048, + "pitch": null, + "reason": null, + "target": { + "x": 2.19970703125, + "y": 3.233642578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8048, + "pitch": null, + "reason": null, + "target": { + "x": 1.9046630859375, + "y": 3.02880859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8050, + "pitch": null, + "reason": null, + "target": { + "x": 1.999755859375, + "y": 0.987548828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8050, + "pitch": null, + "reason": null, + "target": { + "x": 0.9644775390625, + "y": 1.2603759765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8051, + "pitch": null, + "reason": null, + "target": { + "x": 1.93896484375, + "y": 1.0123291015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8051, + "pitch": null, + "reason": null, + "target": { + "x": 1.93896484375, + "y": 3.025634765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8052, + "pitch": null, + "reason": null, + "target": { + "x": 2.04248046875, + "y": 3.021728515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8052, + "pitch": null, + "reason": null, + "target": { + "x": 1.9097900390625, + "y": 1.0250244140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8052, + "target": { + "x": 29.38818359375, + "y": 30.6895751953125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8052, + "sequence": 660, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8054, + "pitch": null, + "reason": null, + "target": { + "x": 2.0889892578125, + "y": 3.021728515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8054, + "pitch": null, + "reason": null, + "target": { + "x": 1.876708984375, + "y": 1.0369873046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8054, + "pitch": null, + "reason": null, + "target": { + "x": 1.977783203125, + "y": 3.0220947265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8055, + "pitch": null, + "reason": null, + "target": { + "x": 2.1553955078125, + "y": 3.021728515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8055, + "pitch": null, + "reason": null, + "target": { + "x": 1.831787109375, + "y": 1.0452880859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8055, + "target": { + "x": 29.4244384765625, + "y": 30.90966796875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8055, + "sequence": 661, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8055, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8058, + "target": { + "x": 29.542236328125, + "y": 31.1884765625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8058, + "sequence": 662, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8059, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8059, + "pitch": null, + "reason": null, + "target": { + "x": 2.01708984375, + "y": 3.0211181640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8061, + "target": { + "x": 29.583251953125, + "y": 31.3814697265625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8061, + "sequence": 663, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8062, + "pitch": null, + "reason": null, + "target": { + "x": 2.240478515625, + "y": 3.278076171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8062, + "pitch": null, + "reason": null, + "target": { + "x": 2.263916015625, + "y": 3.3065185546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8062, + "otherUnit": null, + "sequence": 967, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8062, + "pitch": null, + "reason": null, + "target": { + "x": 2.0562744140625, + "y": 3.0211181640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8065, + "pitch": null, + "reason": null, + "target": { + "x": 2.2972412109375, + "y": 3.3505859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8065, + "pitch": null, + "reason": null, + "target": { + "x": 1.9295654296875, + "y": 2.710205078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8065, + "sequence": 968, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8066, + "pitch": null, + "reason": null, + "target": { + "x": 2.0982666015625, + "y": 3.0213623046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8067, + "pitch": null, + "reason": null, + "target": { + "x": 2.31494140625, + "y": 3.3779296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8069, + "pitch": null, + "reason": null, + "target": { + "x": 2.18408203125, + "y": 3.0384521484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8069, + "sequence": 969, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8069, + "pitch": null, + "reason": null, + "target": { + "x": 2.142578125, + "y": 3.0216064453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8070, + "pitch": null, + "reason": null, + "target": { + "x": 2.18408203125, + "y": 3.1016845703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8072, + "sequence": 970, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 9, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 66584577, + 71565319, + 83099649, + 83361793, + 87818242, + 88080385, + 88604673, + 88866817, + 89391105 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8076, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x1d" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8076, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8077, + "pitch": null, + "reason": null, + "target": { + "x": 2.169189453125, + "y": 3.0487060546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8078, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 142 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8078, + "otherUnit": null, + "sequence": 971, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8080, + "target": { + "x": 31.13916015625, + "y": 46.26025390625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8080, + "sequence": 664, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 65 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8080, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 65 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8080, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8081, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.07958984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8083, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8084, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 105644034 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8087, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 145 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 104448, + "y": 133120, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8087, + "otherUnit": null, + "sequence": 972, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8088, + "pitch": null, + "reason": null, + "target": { + "x": 2.18408203125, + "y": 3.1417236328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8088, + "pitch": null, + "reason": null, + "target": { + "x": 2.18408203125, + "y": 3.178466796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8088, + "pitch": null, + "reason": null, + "target": { + "x": 1.9295654296875, + "y": 2.57421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8089, + "pitch": null, + "reason": null, + "target": { + "x": 2.18408203125, + "y": 3.2137451171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8089, + "pitch": null, + "reason": null, + "target": { + "x": 1.9295654296875, + "y": 2.4888916015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8089, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8091, + "pitch": null, + "reason": null, + "target": { + "x": 2.18408203125, + "y": 3.2552490234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8091, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8091, + "pitch": null, + "reason": null, + "target": { + "x": 2.0369873046875, + "y": 2.4888916015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8092, + "pitch": null, + "reason": null, + "target": { + "x": 2.1917724609375, + "y": 2.4888916015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8092, + "otherUnit": null, + "sequence": 973, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8093, + "pitch": null, + "reason": null, + "target": { + "x": 2.18408203125, + "y": 3.116455078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8096, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8098, + "pitch": null, + "reason": null, + "target": { + "x": 2.18408203125, + "y": 3.1552734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8099, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8100, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8100, + "pitch": null, + "reason": null, + "target": { + "x": 2.18408203125, + "y": 3.1922607421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 163330, + "y": 125487, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8102, + "otherUnit": null, + "sequence": 974, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8103, + "pitch": null, + "reason": null, + "target": { + "x": 2.18408203125, + "y": 3.232666015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 79429637, + 100139010, + 100401154, + 103546882, + 104857601, + 107216897 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8104, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8104, + "otherUnit": null, + "sequence": 666, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 79429637 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8106, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8106, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8107, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8109, + "sequence": 667, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 100139010 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8110, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8111, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 73400322 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8113, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 88064, + "y": 452608, + "z": 49104 + }, + "snapshotUnitLink": 122, + "snapshotUpkeepPlayerId": 1, + "tag": 49807361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8114, + "otherUnit": null, + "sequence": 668, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8117, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8119, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8119, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8122, + "pitch": null, + "reason": null, + "target": { + "x": 0.6982421875, + "y": 3.373046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 89128963, + 100925441, + 101449729, + 103809025 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8122, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 100401154, + 103546882, + 104857601, + 107216897 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8122, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8124, + "otherUnit": null, + "sequence": 669, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8124, + "otherUnit": null, + "sequence": 975, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 100401154 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8125, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8126, + "sequence": 670, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 103546882 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8128, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8128, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8132, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8133, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8135, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8136, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 3.3017578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8136, + "pitch": null, + "reason": null, + "target": { + "x": 1.6790771484375, + "y": 3.2662353515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8136, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8136, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8137, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 3.3017578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8139, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.65771484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 8, + "unitLink": 118 + } + ], + "addUnitTags": [ + 98828289 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8140, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8140, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.606689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8143, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 39 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8144, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8148, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8151, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8151, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8152, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8152, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 114 + } + ], + "addUnitTags": [ + 68157445 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8154, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 104857601, + 107216897 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8155, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8155, + "sequence": 671, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8155, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 104857601 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8156, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8156, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8159, + "sequence": 672, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 107216897 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8161, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8161, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8162, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 3.2681884765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8162, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8162, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 6, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8162, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8163, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 3.232177734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8163, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8165, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 100925441 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8166, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8167, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 79429637, + 100401154, + 101449729, + 103546882, + 107216897 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8169, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8169, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 133120, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8169, + "otherUnit": null, + "sequence": 976, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8171, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 3.2801513671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8171, + "pitch": null, + "reason": null, + "target": { + "x": 1.7113037109375, + "y": 3.2662353515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8171, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8171, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8173, + "pitch": null, + "reason": null, + "target": { + "x": 1.662109375, + "y": 3.26416015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8174, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8176, + "pitch": null, + "reason": null, + "target": { + "x": 1.75634765625, + "y": 3.2647705078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8176, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 65798145, + 73924610, + 77856769, + 78118913, + 79691779, + 80740355 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8176, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x37" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8181, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 8, + "unitLink": 118 + } + ], + "addUnitTags": [ + 98828289 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8181, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 79429637, + 100401154, + 100925441, + 103546882, + 107216897 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8182, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8182, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x37" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8187, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 74711041, + 65011714 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8188, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8188, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + }, + { + "count": 20, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 74711041, + 99614722, + 51118081, + 51380225, + 62390278, + 65011714, + 68681732, + 69468161, + 70516739, + 78643201, + 79167492, + 79953923, + 81002499, + 91488258, + 92274690, + 92536834, + 92798978, + 95682562, + 102236161, + 102498305, + 102760449, + 105119746 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8189, + "userid": { + "userId": 0 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 210944, + "y": 423936, + "z": 40912 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 60555265, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8189, + "otherUnit": null, + "sequence": 673, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8192, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8192, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8195, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8196, + "userid": { + "userId": 0 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8196, + "otherUnit": null, + "sequence": 977, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8197, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8199, + "pitch": null, + "reason": null, + "target": { + "x": 1.82763671875, + "y": 3.2752685546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8199, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8199, + "pitch": null, + "reason": null, + "target": { + "x": 1.32958984375, + "y": 3.0924072265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8200, + "pitch": null, + "reason": null, + "target": { + "x": 1.8935546875, + "y": 3.2796630859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8200, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8200, + "pitch": null, + "reason": null, + "target": { + "x": 1.3883056640625, + "y": 3.052734375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8202, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8202, + "pitch": null, + "reason": null, + "target": { + "x": 1.466552734375, + "y": 3.072509765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8203, + "pitch": null, + "reason": null, + "target": { + "x": 1.952880859375, + "y": 3.284912109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8203, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8203, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8204, + "pitch": null, + "reason": null, + "target": { + "x": 2.028564453125, + "y": 3.2908935546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8206, + "pitch": null, + "reason": null, + "target": { + "x": 2.0638427734375, + "y": 3.29248046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8206, + "pitch": null, + "reason": null, + "target": { + "x": 2.0953369140625, + "y": 3.2939453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8208, + "pitch": null, + "reason": null, + "target": { + "x": 2.1351318359375, + "y": 3.2939453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8208, + "pitch": null, + "reason": null, + "target": { + "x": 2.151123046875, + "y": 3.24169921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 131 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 218372, + "y": 424146, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8208, + "otherUnit": null, + "sequence": 978, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8210, + "pitch": null, + "reason": null, + "target": { + "x": 2.0120849609375, + "y": 3.1026611328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8211, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8211, + "pitch": null, + "reason": null, + "target": { + "x": 1.9456787109375, + "y": 3.036376953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8212, + "pitch": null, + "reason": null, + "target": { + "x": 2.1666259765625, + "y": 3.2939453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8214, + "pitch": null, + "reason": null, + "target": { + "x": 1.5489501953125, + "y": 0.983642578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8214, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8215, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8218, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 108527618 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8219, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8219, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8222, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.3416748046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 89128964 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8222, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8222, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8223, + "pitch": null, + "reason": null, + "target": { + "x": 1.7940673828125, + "y": 3.036376953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8223, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8223, + "pitch": null, + "reason": null, + "target": { + "x": 0.7427978515625, + "y": 3.3416748046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 100925442 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8225, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8225, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 100925442 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8226, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8226, + "pitch": null, + "reason": null, + "target": { + "x": 1.507080078125, + "y": 3.072509765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8228, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8228, + "pitch": null, + "reason": null, + "target": { + "x": 1.5546875, + "y": 3.072509765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 101449730 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8229, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 108527618, + 75759617 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x07" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8229, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8229, + "pitch": null, + "reason": null, + "target": { + "x": 1.614990234375, + "y": 3.072509765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8232, + "pitch": null, + "reason": null, + "target": { + "x": 1.614990234375, + "y": 3.1119384765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8233, + "pitch": null, + "reason": null, + "target": { + "x": 1.614990234375, + "y": 3.15380859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8234, + "pitch": null, + "reason": null, + "target": { + "x": 1.768798828125, + "y": 2.909912109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8236, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8236, + "pitch": null, + "reason": null, + "target": { + "x": 1.768798828125, + "y": 2.815185546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8236, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8237, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8241, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8243, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8243, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8244, + "pitch": null, + "reason": null, + "target": { + "x": 1.768798828125, + "y": 2.916259765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8245, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8247, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8248, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 217372, + "y": 383353, + "z": 40940 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8249, + "otherUnit": null, + "sequence": 674, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8249, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8252, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 20, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 51642369, + 52166657, + 52428801, + 52690945, + 52953089, + 53739524, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63438849, + 67895300, + 69992449, + 71041025, + 73662467, + 78381058, + 86245378, + 86507522 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8254, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8254, + "pitch": null, + "reason": null, + "target": { + "x": 1.7149658203125, + "y": 2.969970703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8255, + "pitch": null, + "reason": null, + "target": { + "x": 1.4716796875, + "y": 3.2132568359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8255, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8258, + "pitch": null, + "reason": null, + "target": { + "x": 1.4925537109375, + "y": 0.990234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8258, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8259, + "pitch": null, + "reason": null, + "target": { + "x": 1.4176025390625, + "y": 0.99267578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8259, + "pitch": null, + "reason": null, + "target": { + "x": 1.4716796875, + "y": 3.1217041015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8259, + "pitch": null, + "reason": null, + "target": { + "x": 1.4716796875, + "y": 3.0047607421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8260, + "pitch": null, + "reason": null, + "target": { + "x": 1.614013671875, + "y": 3.152099609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8260, + "pitch": null, + "reason": null, + "target": { + "x": 1.375244140625, + "y": 0.99169921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8260, + "target": { + "x": 25.261962890625, + "y": 45.997314453125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8260, + "sequence": 675, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8260, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8262, + "pitch": null, + "reason": null, + "target": { + "x": 1.3209228515625, + "y": 0.9920654296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8262, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8263, + "pitch": null, + "reason": null, + "target": { + "x": 1.2630615234375, + "y": 0.9932861328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 8, + "unitLink": 118 + } + ], + "addUnitTags": [ + 98828289 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8266, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8267, + "userid": { + "userId": 0 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 216 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8267, + "otherUnit": null, + "sequence": 676, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8269, + "pitch": null, + "reason": null, + "target": { + "x": 1.2252197265625, + "y": 0.9923095703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8270, + "pitch": null, + "reason": null, + "target": { + "x": 1.5665283203125, + "y": 2.9478759765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8270, + "pitch": null, + "reason": null, + "target": { + "x": 1.7213134765625, + "y": 2.79296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8271, + "pitch": null, + "reason": null, + "target": { + "x": 1.743408203125, + "y": 2.6539306640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 78905348 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8271, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8274, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8275, + "pitch": null, + "reason": null, + "target": { + "x": 0.797119140625, + "y": 3.3416748046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8277, + "pitch": null, + "reason": null, + "target": { + "x": 0.8380126953125, + "y": 3.3416748046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 210717, + "y": 340852, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8277, + "otherUnit": null, + "sequence": 677, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8280, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 104448, + "y": 120832, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8280, + "otherUnit": null, + "sequence": 979, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8285, + "target": { + "x": 32.35205078125, + "y": 44.2391357421875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8285, + "sequence": 678, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8285, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8285, + "pitch": null, + "reason": null, + "target": { + "x": 0.778564453125, + "y": 3.3416748046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 141 + }, + "cmdFlags": 16777472, + "data": { + "TargetPoint": { + "x": 104448, + "y": 133120, + "z": 49104 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8286, + "otherUnit": null, + "sequence": 981, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8288, + "pitch": null, + "reason": null, + "target": { + "x": 0.812744140625, + "y": 3.3416748046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 101449730, + 108527618 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8290, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 66322433 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8290, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8290, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 20, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 73400322, + 50855937, + 51904513, + 52166657, + 52428801, + 52690945, + 52953089, + 53739524, + 57671682, + 58195969, + 58982401, + 60293121, + 61603842, + 63176705, + 63438849, + 67895300, + 71041025, + 73662467, + 78381058, + 86245378, + 86507522 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8292, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 87293955 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8293, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8295, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 105644034 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8296, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8296, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8297, + "pitch": null, + "reason": null, + "target": { + "x": 0.8707275390625, + "y": 3.3416748046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8297, + "pitch": null, + "reason": null, + "target": { + "x": 1.8603515625, + "y": 2.5592041015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8299, + "pitch": null, + "reason": null, + "target": { + "x": 0.9100341796875, + "y": 3.3416748046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8299, + "pitch": null, + "reason": null, + "target": { + "x": 1.9931640625, + "y": 2.426513671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8300, + "pitch": null, + "reason": null, + "target": { + "x": 0.9771728515625, + "y": 3.29931640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8301, + "pitch": null, + "reason": null, + "target": { + "x": 1.0107421875, + "y": 3.2657470703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8301, + "pitch": null, + "reason": null, + "target": { + "x": 1.1912841796875, + "y": 0.97998046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8303, + "pitch": null, + "reason": null, + "target": { + "x": 1.056396484375, + "y": 3.2200927734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 80478209 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8303, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8303, + "pitch": null, + "reason": null, + "target": { + "x": 0.8450927734375, + "y": 3.3411865234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8304, + "pitch": null, + "reason": null, + "target": { + "x": 1.12353515625, + "y": 3.15283203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8304, + "pitch": null, + "reason": null, + "target": { + "x": 1.144287109375, + "y": 0.9593505859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8304, + "pitch": null, + "reason": null, + "target": { + "x": 1.114501953125, + "y": 0.9473876953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8304, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8306, + "pitch": null, + "reason": null, + "target": { + "x": 1.15478515625, + "y": 3.1217041015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8307, + "pitch": null, + "reason": null, + "target": { + "x": 1.06201171875, + "y": 0.9307861328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 257 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 296960, + "y": 333824, + "z": 32718 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8307, + "otherUnit": null, + "sequence": 679, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8307, + "pitch": null, + "reason": null, + "target": { + "x": 0.883056640625, + "y": 3.3248291015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8308, + "pitch": null, + "reason": null, + "target": { + "x": 1.18359375, + "y": 3.0928955078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8308, + "pitch": null, + "reason": null, + "target": { + "x": 0.912353515625, + "y": 3.3062744140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8310, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.785400390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 101964, + "y": 156905, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8310, + "otherUnit": null, + "sequence": 982, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8311, + "pitch": null, + "reason": null, + "target": { + "x": 1.0299072265625, + "y": 0.927490234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8311, + "pitch": null, + "reason": null, + "target": { + "x": 2.04052734375, + "y": 2.404296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8311, + "pitch": null, + "reason": null, + "target": { + "x": 2.1732177734375, + "y": 2.404296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8311, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8212890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8311, + "pitch": null, + "reason": null, + "target": { + "x": 0.9510498046875, + "y": 3.2789306640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8312, + "pitch": null, + "reason": null, + "target": { + "x": 2.324951171875, + "y": 2.404296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8312, + "pitch": null, + "reason": null, + "target": { + "x": 0.986328125, + "y": 3.2523193359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8314, + "pitch": null, + "reason": null, + "target": { + "x": 2.4639892578125, + "y": 2.404296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8315, + "pitch": null, + "reason": null, + "target": { + "x": 1.025390625, + "y": 3.2216796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8316, + "pitch": null, + "reason": null, + "target": { + "x": 1.067626953125, + "y": 3.1876220703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 89128964 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8318, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 105381889 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8319, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8319, + "pitch": null, + "reason": null, + "target": { + "x": 1.1097412109375, + "y": 3.1533203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8321, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8321, + "pitch": null, + "reason": null, + "target": { + "x": 1.149658203125, + "y": 3.12060546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8322, + "pitch": null, + "reason": null, + "target": { + "x": 1.612548828125, + "y": 3.1153564453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8322, + "target": { + "x": 44.25, + "y": 37.75, + "z": 3.993896484375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8322, + "sequence": 680, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 104448, + "y": 145408, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8322, + "otherUnit": null, + "sequence": 983, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8322, + "pitch": null, + "reason": null, + "target": { + "x": 1.17724609375, + "y": 3.0980224609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 100925442 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8323, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8323, + "pitch": null, + "reason": null, + "target": { + "x": 1.6011962890625, + "y": 3.037353515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8325, + "pitch": null, + "reason": null, + "target": { + "x": 1.5885009765625, + "y": 2.986328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8325, + "pitch": null, + "reason": null, + "target": { + "x": 1.5765380859375, + "y": 2.94140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 87293955, + 109838337 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8325, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8326, + "pitch": null, + "reason": null, + "target": { + "x": 1.2484130859375, + "y": 3.06494140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8326, + "pitch": null, + "reason": null, + "target": { + "x": 2.486083984375, + "y": 2.5023193359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8327, + "pitch": null, + "reason": null, + "target": { + "x": 1.284423828125, + "y": 3.0289306640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8327, + "pitch": null, + "reason": null, + "target": { + "x": 1.551025390625, + "y": 2.8828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8327, + "pitch": null, + "reason": null, + "target": { + "x": 2.486083984375, + "y": 2.64453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193, + 109838337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8327, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8329, + "pitch": null, + "reason": null, + "target": { + "x": 1.3211669921875, + "y": 2.9920654296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8329, + "pitch": null, + "reason": null, + "target": { + "x": 1.5352783203125, + "y": 2.84912109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8329, + "pitch": null, + "reason": null, + "target": { + "x": 2.486083984375, + "y": 2.7835693359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8330, + "pitch": null, + "reason": null, + "target": { + "x": 1.385986328125, + "y": 2.92724609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8330, + "pitch": null, + "reason": null, + "target": { + "x": 1.5277099609375, + "y": 2.7906494140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8330, + "pitch": null, + "reason": null, + "target": { + "x": 2.486083984375, + "y": 2.8466796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8330, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8330, + "pitch": null, + "reason": null, + "target": { + "x": 0.73388671875, + "y": 0.8212890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8332, + "pitch": null, + "reason": null, + "target": { + "x": 1.4132080078125, + "y": 2.900146484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8332, + "pitch": null, + "reason": null, + "target": { + "x": 1.53076171875, + "y": 2.75537109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8332, + "pitch": null, + "reason": null, + "target": { + "x": 0.779052734375, + "y": 0.8212890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8333, + "pitch": null, + "reason": null, + "target": { + "x": 1.5389404296875, + "y": 2.7178955078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8333, + "pitch": null, + "reason": null, + "target": { + "x": 0.886962890625, + "y": 0.8212890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8333, + "pitch": null, + "reason": null, + "target": { + "x": 1.2037353515625, + "y": 3.080078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8334, + "pitch": null, + "reason": null, + "target": { + "x": 0.93798828125, + "y": 0.8212890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8336, + "pitch": null, + "reason": null, + "target": { + "x": 1.54638671875, + "y": 2.669921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8336, + "pitch": null, + "reason": null, + "target": { + "x": 0.990234375, + "y": 0.8212890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8336, + "pitch": null, + "reason": null, + "target": { + "x": 1.238037109375, + "y": 3.0526123046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8337, + "pitch": null, + "reason": null, + "target": { + "x": 1.5509033203125, + "y": 2.6331787109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8337, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8337, + "pitch": null, + "reason": null, + "target": { + "x": 1.0714111328125, + "y": 0.8212890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8337, + "pitch": null, + "reason": null, + "target": { + "x": 1.2677001953125, + "y": 3.0274658203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8338, + "pitch": null, + "reason": null, + "target": { + "x": 1.5479736328125, + "y": 2.60009765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8338, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8340, + "pitch": null, + "reason": null, + "target": { + "x": 1.544921875, + "y": 2.56787109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 103284737, + 104333313 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8340, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8340, + "pitch": null, + "reason": null, + "target": { + "x": 1.29833984375, + "y": 3.0008544921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 0, + "unitLink": 475 + } + ], + "addUnitTags": [ + 89128964, + 41418753 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8341, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8341, + "pitch": null, + "reason": null, + "target": { + "x": 1.5411376953125, + "y": 2.53564453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8341, + "target": { + "x": 43.75, + "y": 45.25, + "z": 3.993896484375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8341, + "sequence": 681, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8341, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8341, + "pitch": null, + "reason": null, + "target": { + "x": 1.0714111328125, + "y": 0.9024658203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8341, + "pitch": null, + "reason": null, + "target": { + "x": 1.3306884765625, + "y": 2.97265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8342, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8344, + "pitch": null, + "reason": null, + "target": { + "x": 1.3662109375, + "y": 2.9412841796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8345, + "target": { + "x": 44.75, + "y": 47.25, + "z": 4.0458984375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8345, + "sequence": 682, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8345, + "pitch": null, + "reason": null, + "target": { + "x": 1.399169921875, + "y": 2.912353515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8347, + "pitch": null, + "reason": null, + "target": { + "x": 1.1363525390625, + "y": 0.9140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8348, + "pitch": null, + "reason": null, + "target": { + "x": 1.4427490234375, + "y": 2.88330078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8348, + "pitch": null, + "reason": null, + "target": { + "x": 1.4715576171875, + "y": 2.8544921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8349, + "pitch": null, + "reason": null, + "target": { + "x": 1.5084228515625, + "y": 2.8177490234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8351, + "pitch": null, + "reason": null, + "target": { + "x": 1.5460205078125, + "y": 2.7801513671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8351, + "pitch": null, + "reason": null, + "target": { + "x": 2.486083984375, + "y": 3.0079345703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8352, + "pitch": null, + "reason": null, + "target": { + "x": 1.56591796875, + "y": 2.7432861328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8352, + "pitch": null, + "reason": null, + "target": { + "x": 2.486083984375, + "y": 3.2227783203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 87293955 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8352, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8353, + "pitch": null, + "reason": null, + "target": { + "x": 1.42529296875, + "y": 2.8897705078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 160759, + "y": 125173, + "z": 49128 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8355, + "otherUnit": null, + "sequence": 984, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8356, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8356, + "pitch": null, + "reason": null, + "target": { + "x": 1.4495849609375, + "y": 2.8662109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8357, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8359, + "pitch": null, + "reason": null, + "target": { + "x": 1.4722900390625, + "y": 2.8427734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8360, + "pitch": null, + "reason": null, + "target": { + "x": 1.494384765625, + "y": 2.8194580078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8362, + "pitch": null, + "reason": null, + "target": { + "x": 1.06591796875, + "y": 0.951171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 69206018 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8363, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 67371010, + 94371841, + 96206851, + 101187587, + 104071170, + 106168321, + 106430465 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8363, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8363, + "pitch": null, + "reason": null, + "target": { + "x": 1.5203857421875, + "y": 2.7918701171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8364, + "pitch": null, + "reason": null, + "target": { + "x": 1.106689453125, + "y": 0.973388671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 305152, + "y": 440320, + "z": 32768 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 94896129, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8364, + "otherUnit": null, + "sequence": 683, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8364, + "pitch": null, + "reason": null, + "target": { + "x": 1.5450439453125, + "y": 2.7655029296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8366, + "pitch": null, + "reason": null, + "target": { + "x": 1.13525390625, + "y": 0.9908447265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8367, + "pitch": null, + "reason": null, + "target": { + "x": 1.1898193359375, + "y": 1.0147705078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8367, + "pitch": null, + "reason": null, + "target": { + "x": 2.4449462890625, + "y": 3.20068359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8367, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8368, + "pitch": null, + "reason": null, + "target": { + "x": 2.30908203125, + "y": 3.0648193359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8368, + "target": { + "x": 23.3248291015625, + "y": 17.5274658203125, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8368, + "sequence": 985, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8370, + "pitch": null, + "reason": null, + "target": { + "x": 1.2291259765625, + "y": 1.02978515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8370, + "pitch": null, + "reason": null, + "target": { + "x": 2.144775390625, + "y": 2.9005126953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8371, + "pitch": null, + "reason": null, + "target": { + "x": 1.9993896484375, + "y": 2.63818359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8373, + "pitch": null, + "reason": null, + "target": { + "x": 1.923583984375, + "y": 2.4991455078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8373, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8374, + "pitch": null, + "reason": null, + "target": { + "x": 1.7877197265625, + "y": 2.36328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8375, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.18212890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8377, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8377, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.18212890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8379, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8379, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 62914564, + 110624769 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8381, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8382, + "pitch": null, + "reason": null, + "target": { + "x": 1.7877197265625, + "y": 2.2052001953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8382, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8383, + "pitch": null, + "reason": null, + "target": { + "x": 1.7877197265625, + "y": 2.0693359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8383, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8385, + "pitch": null, + "reason": null, + "target": { + "x": 1.7877197265625, + "y": 2.0030517578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8385, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8386, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.2437744140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8386, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8388, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.2796630859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 244147, + "y": 256177, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8388, + "otherUnit": null, + "sequence": 684, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8388, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8389, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.338134765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8390, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8390, + "sequence": 685, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8390, + "otherUnit": null, + "sequence": 986, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8393, + "sequence": 987, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8394, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.2213134765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8396, + "pitch": null, + "reason": null, + "target": { + "x": 1.2017822265625, + "y": 1.0013427734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 94896129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8397, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8397, + "pitch": null, + "reason": null, + "target": { + "x": 1.1658935546875, + "y": 0.97705078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 62914564, + 110624769 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8397, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x03" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8397, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8397, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.2589111328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8399, + "pitch": null, + "reason": null, + "target": { + "x": 1.130126953125, + "y": 0.9521484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8399, + "target": { + "x": 30.3406982421875, + "y": 31.632568359375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8399, + "sequence": 686, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8400, + "pitch": null, + "reason": null, + "target": { + "x": 1.0758056640625, + "y": 0.9169921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8400, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8400, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.30029296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8403, + "pitch": null, + "reason": null, + "target": { + "x": 1.0401611328125, + "y": 0.89453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8404, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8404, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8404, + "pitch": null, + "reason": null, + "target": { + "x": 2.3468017578125, + "y": 3.33349609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 8405, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 26, + "y": 34, + "z": 4 + }, + "snapshotUnitLink": 168, + "snapshotUpkeepPlayerId": 0, + "tag": 5242881, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8405, + "sequence": 687, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 222 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8408, + "otherUnit": null, + "sequence": 988, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8409, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 2.5814208984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 4, + "unitLink": 156 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8409, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 6, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 4, + "unitLink": 156 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8409, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8411, + "pitch": null, + "reason": null, + "target": { + "x": 1.0445556640625, + "y": 0.7227783203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 223 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 305152, + "y": 116736, + "z": 32718 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8415, + "otherUnit": null, + "sequence": 989, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8416, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 4, + "unitLink": 156 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8419, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8419, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8420, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8422, + "target": { + "x": 32.5958251953125, + "y": 44.4879150390625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8422, + "sequence": 688, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8422, + "pitch": null, + "reason": null, + "target": { + "x": 1.457763671875, + "y": 1.0396728515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8423, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8423, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 224311, + "y": 134961, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8423, + "otherUnit": null, + "sequence": 990, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8425, + "pitch": null, + "reason": null, + "target": { + "x": 1.8773193359375, + "y": 3.122314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8425, + "target": { + "x": 32.593994140625, + "y": 44.5789794921875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8425, + "sequence": 689, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8426, + "pitch": null, + "reason": null, + "target": { + "x": 1.8773193359375, + "y": 3.122314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8427, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8427, + "target": { + "x": 32.5728759765625, + "y": 44.521484375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8427, + "sequence": 690, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8427, + "target": { + "x": 27.373291015625, + "y": 16.3543701171875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8427, + "sequence": 991, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8430, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8431, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 2.44873046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8431, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 109051906 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8433, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8433, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 2.28125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8434, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 2.123291015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8434, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8434, + "pitch": null, + "reason": null, + "target": { + "x": 1.5006103515625, + "y": 1.0396728515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8435, + "pitch": null, + "reason": null, + "target": { + "x": 1.550537109375, + "y": 1.0396728515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8435, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8437, + "pitch": null, + "reason": null, + "target": { + "x": 1.6177978515625, + "y": 1.0396728515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8437, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8438, + "pitch": null, + "reason": null, + "target": { + "x": 1.826904296875, + "y": 3.1318359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8438, + "pitch": null, + "reason": null, + "target": { + "x": 1.7957763671875, + "y": 3.1630859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8440, + "pitch": null, + "reason": null, + "target": { + "x": 1.754150390625, + "y": 3.2047119140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 62914564, + 110624769 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8440, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8440, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8440, + "pitch": null, + "reason": null, + "target": { + "x": 1.6177978515625, + "y": 1.0001220703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8441, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 2.0726318359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8441, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 1.930419921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8441, + "pitch": null, + "reason": null, + "target": { + "x": 1.6177978515625, + "y": 0.9166259765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8442, + "pitch": null, + "reason": null, + "target": { + "x": 1.7237548828125, + "y": 3.2135009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8442, + "otherUnit": null, + "sequence": 992, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8445, + "target": { + "x": 29.4925537109375, + "y": 31.7718505859375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8445, + "sequence": 691, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8445, + "pitch": null, + "reason": null, + "target": { + "x": 1.8463134765625, + "y": 3.1407470703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8448, + "target": { + "x": 29.483642578125, + "y": 31.8233642578125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8448, + "sequence": 692, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8448, + "pitch": null, + "reason": null, + "target": { + "x": 1.8187255859375, + "y": 3.1572265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8451, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8452, + "target": { + "x": 29.4849853515625, + "y": 31.7718505859375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8452, + "sequence": 693, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 99352577 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8452, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8452, + "pitch": null, + "reason": null, + "target": { + "x": 1.782470703125, + "y": 3.1787109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 187 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8455, + "otherUnit": null, + "sequence": 694, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8455, + "pitch": null, + "reason": null, + "target": { + "x": 1.744140625, + "y": 3.201416015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8456, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 1.8577880859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8456, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 1.715576171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 110624769 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8459, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 62914564 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8461, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8466, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8467, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 1.614501953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8468, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 1.4754638671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8470, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 1.326904296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8471, + "pitch": null, + "reason": null, + "target": { + "x": 2.216064453125, + "y": 0.8858642578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 4, + "unitLink": 156 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8471, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8471, + "pitch": null, + "reason": null, + "target": { + "x": 1.89404296875, + "y": 1.213134765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8472, + "pitch": null, + "reason": null, + "target": { + "x": 1.685302734375, + "y": 3.2135009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8474, + "pitch": null, + "reason": null, + "target": { + "x": 1.638916015625, + "y": 3.2135009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8474, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 250894, + "y": 122803, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8474, + "otherUnit": null, + "sequence": 994, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8475, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8478, + "pitch": null, + "reason": null, + "target": { + "x": 1.712158203125, + "y": 3.21337890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8481, + "pitch": null, + "reason": null, + "target": { + "x": 2.0306396484375, + "y": 2.726318359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 8482, + "pitch": null, + "reason": null, + "target": { + "x": 1.033935546875, + "y": 0.8597412109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8483, + "pitch": null, + "reason": null, + "target": { + "x": 1.6763916015625, + "y": 3.21337890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 8485, + "pitch": null, + "reason": null, + "target": { + "x": 1.05078125, + "y": 0.8251953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8486, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 422982, + "y": 261623, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8487, + "otherUnit": null, + "sequence": 695, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 8489, + "pitch": null, + "reason": null, + "target": { + "x": 1.0670166015625, + "y": 0.797607421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8489, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8489, + "pitch": null, + "reason": null, + "target": { + "x": 1.6412353515625, + "y": 3.21337890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8490, + "target": { + "x": 51.633544921875, + "y": 32.25390625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8490, + "sequence": 696, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8493, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8494, + "target": { + "x": 51.007568359375, + "y": 34.15869140625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8494, + "sequence": 697, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8496, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 8497, + "pitch": null, + "reason": null, + "target": { + "x": 1.09033203125, + "y": 0.773193359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8497, + "target": { + "x": 50.068603515625, + "y": 37.333251953125, + "z": 4.00439453125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8497, + "sequence": 698, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8497, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8500, + "pitch": null, + "reason": null, + "target": { + "x": 2.2098388671875, + "y": 2.703369140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8501, + "pitch": null, + "reason": null, + "target": { + "x": 2.1710205078125, + "y": 0.8970947265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8501, + "pitch": null, + "reason": null, + "target": { + "x": 2.2098388671875, + "y": 2.703369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8502, + "pitch": null, + "reason": null, + "target": { + "x": 2.13720703125, + "y": 0.904541015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8502, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8504, + "pitch": null, + "reason": null, + "target": { + "x": 2.072021484375, + "y": 0.9188232421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 241620, + "y": 370763, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8504, + "otherUnit": null, + "sequence": 699, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8505, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8507, + "pitch": null, + "reason": null, + "target": { + "x": 2.0255126953125, + "y": 0.9285888671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8507, + "target": { + "x": 29.5621337890625, + "y": 45.2376708984375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8507, + "sequence": 700, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 99352577 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8507, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8508, + "pitch": null, + "reason": null, + "target": { + "x": 1.9677734375, + "y": 0.942138671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8508, + "target": { + "x": 31.2506103515625, + "y": 13.9150390625, + "z": 4.995849609375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8508, + "sequence": 996, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8509, + "pitch": null, + "reason": null, + "target": { + "x": 1.852294921875, + "y": 0.9683837890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8509, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8511, + "pitch": null, + "reason": null, + "target": { + "x": 1.80126953125, + "y": 0.9788818359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8511, + "pitch": null, + "reason": null, + "target": { + "x": 1.7652587890625, + "y": 0.9803466796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8511, + "pitch": null, + "reason": null, + "target": { + "x": 2.0306396484375, + "y": 2.678955078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8512, + "pitch": null, + "reason": null, + "target": { + "x": 2.0306396484375, + "y": 2.4229736328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8513, + "pitch": null, + "reason": null, + "target": { + "x": 1.71728515625, + "y": 0.9781494140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 8513, + "pitch": null, + "reason": null, + "target": { + "x": 1.12255859375, + "y": 0.7689208984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8513, + "target": { + "x": 27.1549072265625, + "y": 36.8463134765625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8513, + "sequence": 701, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8515, + "pitch": null, + "reason": null, + "target": { + "x": 1.6767578125, + "y": 0.9698486328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 253952, + "y": 110592, + "z": 40906 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8515, + "otherUnit": null, + "sequence": 997, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8516, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8518, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8518, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8520, + "pitch": null, + "reason": null, + "target": { + "x": 1.53369140625, + "y": 1.0494384765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 8, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 103546883, + 103809026, + 106692610, + 107479042, + 108003329, + 108265473, + 108789761, + 112459777 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8522, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8522, + "otherUnit": null, + "sequence": 702, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8522, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 103546883 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8523, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + }, + { + "count": 8, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 89128964, + 100925442, + 101449730, + 108527618, + 66584577, + 71565319, + 83099649, + 83361793, + 87818242, + 88604673, + 88866817, + 89391105 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8524, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8526, + "sequence": 703, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8526, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8527, + "pitch": null, + "reason": null, + "target": { + "x": 2.139404296875, + "y": 2.703369140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 103809026 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8527, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8528, + "pitch": null, + "reason": null, + "target": { + "x": 2.106689453125, + "y": 2.703369140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8528, + "sequence": 704, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8528, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8530, + "pitch": null, + "reason": null, + "target": { + "x": 2.0570068359375, + "y": 2.703369140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 106692610 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8530, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8531, + "pitch": null, + "reason": null, + "target": { + "x": 1.993896484375, + "y": 2.703369140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 8531, + "pitch": null, + "reason": null, + "target": { + "x": 1.1552734375, + "y": 0.77392578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8531, + "sequence": 705, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8533, + "pitch": null, + "reason": null, + "target": { + "x": 1.9530029296875, + "y": 2.703369140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 107479042 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8533, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8533, + "pitch": null, + "reason": null, + "target": { + "x": 1.53369140625, + "y": 1.0494384765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8534, + "sequence": 706, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8534, + "pitch": null, + "reason": null, + "target": { + "x": 2.1773681640625, + "y": 2.703369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 108003329 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8535, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8537, + "pitch": null, + "reason": null, + "target": { + "x": 2.13623046875, + "y": 2.703369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8538, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8539, + "pitch": null, + "reason": null, + "target": { + "x": 2.101806640625, + "y": 2.703369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 8541, + "pitch": null, + "reason": null, + "target": { + "x": 1.453125, + "y": 3.109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 8, + "unitLink": 118 + } + ], + "addUnitTags": [ + 98828289 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8541, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8541, + "sequence": 707, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 108265473 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8542, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8542, + "pitch": null, + "reason": null, + "target": { + "x": 2.0633544921875, + "y": 2.703369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8544, + "pitch": null, + "reason": null, + "target": { + "x": 2.0233154296875, + "y": 2.703369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8545, + "pitch": null, + "reason": null, + "target": { + "x": 1.458251953125, + "y": 1.0494384765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8545, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8545, + "pitch": null, + "reason": null, + "target": { + "x": 1.4049072265625, + "y": 1.0494384765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8545, + "pitch": null, + "reason": null, + "target": { + "x": 1.9853515625, + "y": 2.703369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8546, + "pitch": null, + "reason": null, + "target": { + "x": 1.709716796875, + "y": 0.95263671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8546, + "pitch": null, + "reason": null, + "target": { + "x": 1.3526611328125, + "y": 1.0494384765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 8, + "Data": "0x80" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8548, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8548, + "pitch": null, + "reason": null, + "target": { + "x": 1.73974609375, + "y": 0.9346923828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8548, + "sequence": 708, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8548, + "sequence": 709, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8548, + "pitch": null, + "reason": null, + "target": { + "x": 1.298095703125, + "y": 1.0494384765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8549, + "sequence": 710, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 108789761, + 112459777 + ], + "removeMask": { + "Mask": { + "Count": 8, + "Data": "0xc0" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8549, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8549, + "pitch": null, + "reason": null, + "target": { + "x": 1.9537353515625, + "y": 2.703369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8553, + "pitch": null, + "reason": null, + "target": { + "x": 1.9434814453125, + "y": 2.6497802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 75235329, + 76808193, + 93061123 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8553, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8553, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8554, + "pitch": null, + "reason": null, + "target": { + "x": 1.9434814453125, + "y": 2.6065673828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8556, + "pitch": null, + "reason": null, + "target": { + "x": 1.9434814453125, + "y": 2.570556640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 296960, + "y": 468992, + "z": 32768 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 33292289, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8556, + "otherUnit": null, + "sequence": 711, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 2 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8556, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8557, + "pitch": null, + "reason": null, + "target": { + "x": 1.9434814453125, + "y": 2.5361328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8557, + "pitch": null, + "reason": null, + "target": { + "x": 1.2864990234375, + "y": 0.960205078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 153 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8559, + "otherUnit": null, + "sequence": 998, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 8560, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 38.75, + "y": 57.25, + "z": 4 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 32505857, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8560, + "sequence": 712, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8561, + "sequence": 999, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8561, + "pitch": null, + "reason": null, + "target": { + "x": 1.9498291015625, + "y": 2.6658935546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8563, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8564, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8564, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 2.6279296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 89128964 + ], + "removeMask": { + "Mask": { + "Count": 8, + "Data": "0xff" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8565, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8567, + "pitch": null, + "reason": null, + "target": { + "x": 1.9090576171875, + "y": 2.5018310546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8567, + "pitch": null, + "reason": null, + "target": { + "x": 1.7906494140625, + "y": 2.451171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8567, + "pitch": null, + "reason": null, + "target": { + "x": 1.94580078125, + "y": 2.586669921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8568, + "pitch": null, + "reason": null, + "target": { + "x": 1.8795166015625, + "y": 2.47216796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8568, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8570, + "pitch": null, + "reason": null, + "target": { + "x": 1.8419189453125, + "y": 2.4345703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8570, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8571, + "pitch": null, + "reason": null, + "target": { + "x": 1.768310546875, + "y": 2.3609619140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8571, + "pitch": null, + "reason": null, + "target": { + "x": 1.942138671875, + "y": 2.549560546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8572, + "pitch": null, + "reason": null, + "target": { + "x": 1.76025390625, + "y": 2.3226318359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 151208, + "y": 214812, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8572, + "otherUnit": null, + "sequence": 713, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 112197633 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8572, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8574, + "pitch": null, + "reason": null, + "target": { + "x": 1.8072509765625, + "y": 0.93310546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8575, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8575, + "pitch": null, + "reason": null, + "target": { + "x": 1.922119140625, + "y": 2.5113525390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8576, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 10, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 65798145, + 73924610, + 77856769, + 78118913, + 79691779, + 80740355, + 107216898, + 110362626, + 111935490, + 112984065 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8576, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8576, + "pitch": null, + "reason": null, + "target": { + "x": 1.9014892578125, + "y": 2.4852294921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8578, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8578, + "pitch": null, + "reason": null, + "target": { + "x": 1.8765869140625, + "y": 2.45556640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8580, + "pitch": null, + "reason": null, + "target": { + "x": 1.8455810546875, + "y": 2.419677734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8582, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8582, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8582, + "pitch": null, + "reason": null, + "target": { + "x": 1.3271484375, + "y": 0.94970703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8582, + "pitch": null, + "reason": null, + "target": { + "x": 1.8177490234375, + "y": 2.387939453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 87556105 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8583, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8583, + "pitch": null, + "reason": null, + "target": { + "x": 1.3909912109375, + "y": 0.94970703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8585, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8585, + "pitch": null, + "reason": null, + "target": { + "x": 1.7840576171875, + "y": 2.349609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8586, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8587, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8587, + "pitch": null, + "reason": null, + "target": { + "x": 1.761962890625, + "y": 2.3245849609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8589, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8590, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8594, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.1754150390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8596, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8596, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.0426025390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8598, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 2.92578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8598, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 277339, + "y": 382786, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8600, + "otherUnit": null, + "sequence": 714, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8602, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 199809, + "y": 169333, + "z": 40916 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8604, + "otherUnit": null, + "sequence": 1000, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8606, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8608, + "pitch": null, + "reason": null, + "target": { + "x": 2.2880859375, + "y": 3.261962890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8608, + "pitch": null, + "reason": null, + "target": { + "x": 1.9254150390625, + "y": 2.791259765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8609, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8609, + "pitch": null, + "reason": null, + "target": { + "x": 1.2264404296875, + "y": 0.9793701171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8609, + "pitch": null, + "reason": null, + "target": { + "x": 2.2880859375, + "y": 3.261962890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8611, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8612, + "target": { + "x": 15.4691162109375, + "y": 15.9249267578125, + "z": 5.9970703125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8612, + "sequence": 1001, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8613, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8615, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8617, + "target": { + "x": 30.6993408203125, + "y": 46.6651611328125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8617, + "sequence": 715, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 8617, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 19.286865234375, + "y": 14.2674560546875, + "z": 7.87353515625 + }, + "snapshotUnitLink": 726, + "snapshotUpkeepPlayerId": 2, + "tag": 87293955, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8617, + "sequence": 1002, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8619, + "pitch": null, + "reason": null, + "target": { + "x": 1.7967529296875, + "y": 0.9736328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 94896129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8620, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8620, + "pitch": null, + "reason": null, + "target": { + "x": 1.792236328125, + "y": 1.06591796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 65 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8620, + "otherUnit": null, + "sequence": 716, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8621, + "pitch": null, + "reason": null, + "target": { + "x": 1.787841796875, + "y": 1.1019287109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 66584577 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8621, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 66584577 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8621, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 8621, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 19.1436767578125, + "y": 14.289306640625, + "z": 7.8731689453125 + }, + "snapshotUnitLink": 726, + "snapshotUpkeepPlayerId": 2, + "tag": 87293955, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8621, + "sequence": 1003, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8624, + "pitch": null, + "reason": null, + "target": { + "x": 1.7833251953125, + "y": 1.1363525390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8624, + "sequence": 717, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 71565319 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8626, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 71565319 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8626, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8626, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8627, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8628, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8630, + "pitch": null, + "reason": null, + "target": { + "x": 1.4805908203125, + "y": 2.06591796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8630, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 8, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 68419585, + 69206018, + 66846723, + 76021761, + 79429638, + 80216068, + 93061123, + 93585410, + 103022593, + 111411202 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8631, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8632, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8634, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 161463, + "y": 160199, + "z": 42479 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8635, + "otherUnit": null, + "sequence": 718, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 94896129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8638, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8638, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8641, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8642, + "pitch": null, + "reason": null, + "target": { + "x": 1.3687744140625, + "y": 3.2313232421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8642, + "pitch": null, + "reason": null, + "target": { + "x": 1.31005859375, + "y": 3.3701171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8643, + "pitch": null, + "reason": null, + "target": { + "x": 1.2708740234375, + "y": 3.7669677734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8643, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8643, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8645, + "pitch": null, + "reason": null, + "target": { + "x": 1.2708740234375, + "y": 3.875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8646, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 82 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 133120, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 10223617, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8649, + "otherUnit": null, + "sequence": 1004, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 101711874 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8652, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8653, + "pitch": null, + "reason": null, + "target": { + "x": 2.25048828125, + "y": 3.261962890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8653, + "pitch": null, + "reason": null, + "target": { + "x": 1.141357421875, + "y": 3.875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8654, + "pitch": null, + "reason": null, + "target": { + "x": 2.209716796875, + "y": 3.261962890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8654, + "pitch": null, + "reason": null, + "target": { + "x": 0.9927978515625, + "y": 3.875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 343 + } + ], + "addUnitTags": [ + 9961473 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8654, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8654, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8656, + "pitch": null, + "reason": null, + "target": { + "x": 2.1768798828125, + "y": 3.261962890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8656, + "pitch": null, + "reason": null, + "target": { + "x": 0.8507080078125, + "y": 3.875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8658, + "pitch": null, + "reason": null, + "target": { + "x": 1.5347900390625, + "y": 1.1932373046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8661, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 68943876 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8663, + "userid": { + "userId": 1 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 257 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 88064, + "y": 514048, + "z": 49094 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8663, + "otherUnit": null, + "sequence": 719, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8663, + "pitch": null, + "reason": null, + "target": { + "x": 2.251220703125, + "y": 3.261962890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8664, + "otherUnit": null, + "sequence": 1006, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8667, + "pitch": null, + "reason": null, + "target": { + "x": 1.4078369140625, + "y": 3.1422119140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8667, + "sequence": 1007, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8667, + "pitch": null, + "reason": null, + "target": { + "x": 2.2137451171875, + "y": 3.261962890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8668, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8668, + "pitch": null, + "reason": null, + "target": { + "x": 1.4078369140625, + "y": 3.1422119140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8669, + "sequence": 1008, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8671, + "pitch": null, + "reason": null, + "target": { + "x": 1.370849609375, + "y": 1.7611083984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8673, + "pitch": null, + "reason": null, + "target": { + "x": 1.48486328125, + "y": 1.1932373046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8675, + "pitch": null, + "reason": null, + "target": { + "x": 1.4176025390625, + "y": 1.1932373046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8676, + "pitch": null, + "reason": null, + "target": { + "x": 1.3883056640625, + "y": 1.08837890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8676, + "pitch": null, + "reason": null, + "target": { + "x": 1.3201904296875, + "y": 1.1932373046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8678, + "pitch": null, + "reason": null, + "target": { + "x": 1.32958984375, + "y": 1.1280517578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8678, + "pitch": null, + "reason": null, + "target": { + "x": 1.2725830078125, + "y": 1.1932373046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8679, + "pitch": null, + "reason": null, + "target": { + "x": 1.467041015625, + "y": 3.1422119140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8679, + "pitch": null, + "reason": null, + "target": { + "x": 1.1669921875, + "y": 1.1932373046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8680, + "pitch": null, + "reason": null, + "target": { + "x": 1.5078125, + "y": 3.1422119140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8680, + "pitch": null, + "reason": null, + "target": { + "x": 1.32958984375, + "y": 1.1678466796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8680, + "pitch": null, + "reason": null, + "target": { + "x": 1.1334228515625, + "y": 1.1932373046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8682, + "pitch": null, + "reason": null, + "target": { + "x": 1.5478515625, + "y": 3.1422119140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 145408, + "y": 137216, + "z": 49120 + }, + "snapshotUnitLink": 42, + "snapshotUpkeepPlayerId": 2, + "tag": 0, + "targetUnitFlags": 175, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8682, + "otherUnit": null, + "sequence": 720, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8683, + "pitch": null, + "reason": null, + "target": { + "x": 1.617431640625, + "y": 3.1494140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8684, + "pitch": null, + "reason": null, + "target": { + "x": 1.654296875, + "y": 3.186279296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8684, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8684, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8686, + "pitch": null, + "reason": null, + "target": { + "x": 1.6854248046875, + "y": 3.2254638671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 113770497 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8687, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8687, + "pitch": null, + "reason": null, + "target": { + "x": 1.45166015625, + "y": 3.14453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8690, + "pitch": null, + "reason": null, + "target": { + "x": 1.4993896484375, + "y": 3.1558837890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8691, + "otherUnit": null, + "sequence": 721, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 113770497 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8693, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8693, + "pitch": null, + "reason": null, + "target": { + "x": 1.097412109375, + "y": 1.1932373046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8693, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8693, + "pitch": null, + "reason": null, + "target": { + "x": 1.5350341796875, + "y": 3.167724609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8694, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8694, + "pitch": null, + "reason": null, + "target": { + "x": 1.0615234375, + "y": 1.1932373046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8694, + "pitch": null, + "reason": null, + "target": { + "x": 1.5718994140625, + "y": 3.18115234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8697, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8697, + "pitch": null, + "reason": null, + "target": { + "x": 1.6116943359375, + "y": 3.196533203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 127108, + "y": 186800, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8698, + "otherUnit": null, + "sequence": 722, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8698, + "pitch": null, + "reason": null, + "target": { + "x": 1.6527099609375, + "y": 3.2125244140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8701, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8701, + "pitch": null, + "reason": null, + "target": { + "x": 1.682373046875, + "y": 3.2242431640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8704, + "target": { + "x": 14.3759765625, + "y": 25.1070556640625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8704, + "sequence": 723, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8704, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 20, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 74711041, + 51118081, + 51380225, + 62390278, + 65011714, + 68681732, + 69468161, + 70516739, + 75759617, + 79167492, + 79953923, + 81002499, + 91488258, + 92274690, + 92536834, + 92798978, + 95682562, + 102236161, + 102498305, + 102760449, + 105119746 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8705, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8705, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.8109130859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8706, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8708, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8709, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8709, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8710, + "pitch": null, + "reason": null, + "target": { + "x": 1.53271484375, + "y": 0.8858642578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8712, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8713, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 82313217 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8716, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8721, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8723, + "target": { + "x": 15.5113525390625, + "y": 20.2698974609375, + "z": 5.995361328125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8723, + "sequence": 724, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8723, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8725, + "pitch": null, + "reason": null, + "target": { + "x": 1.6566162109375, + "y": 3.2550048828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8725, + "pitch": null, + "reason": null, + "target": { + "x": 1.5809326171875, + "y": 0.88671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8725, + "pitch": null, + "reason": null, + "target": { + "x": 1.18115234375, + "y": 1.1678466796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8727, + "pitch": null, + "reason": null, + "target": { + "x": 1.623046875, + "y": 3.2550048828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8727, + "pitch": null, + "reason": null, + "target": { + "x": 1.615478515625, + "y": 0.9019775390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8727, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8727, + "pitch": null, + "reason": null, + "target": { + "x": 1.0704345703125, + "y": 1.1678466796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 184320, + "y": 124928, + "z": 40928 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 9961473, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8727, + "otherUnit": null, + "sequence": 1011, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8730, + "pitch": null, + "reason": null, + "target": { + "x": 1.6416015625, + "y": 0.9283447265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 8731, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 22.5, + "y": 15.25, + "z": 4.99609375 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 9961473, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8731, + "sequence": 1012, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8732, + "pitch": null, + "reason": null, + "target": { + "x": 1.653564453125, + "y": 0.96044921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8734, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3616943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8734, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8735, + "otherUnit": null, + "sequence": 1013, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8735, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3616943359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8738, + "pitch": null, + "reason": null, + "target": { + "x": 1.6484375, + "y": 0.99169921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8738, + "sequence": 1014, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8739, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8739, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8739, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.05859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8741, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.1119384765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8741, + "sequence": 1015, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8742, + "target": { + "x": 18.5826416015625, + "y": 23.2369384765625, + "z": 5.0477294921875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8742, + "sequence": 725, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8745, + "target": { + "x": 19.9219970703125, + "y": 25.5394287109375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8745, + "sequence": 726, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8746, + "pitch": null, + "reason": null, + "target": { + "x": 1.0704345703125, + "y": 1.29736328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8746, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8747, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8747, + "pitch": null, + "reason": null, + "target": { + "x": 1.6356201171875, + "y": 1.0357666015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8747, + "pitch": null, + "reason": null, + "target": { + "x": 1.1842041015625, + "y": 1.4332275390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 201953, + "y": 148833, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8747, + "otherUnit": null, + "sequence": 1016, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8749, + "pitch": null, + "reason": null, + "target": { + "x": 1.2410888671875, + "y": 1.515380859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8749, + "target": { + "x": 26.03369140625, + "y": 29.1544189453125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8749, + "sequence": 727, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8749, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8750, + "pitch": null, + "reason": null, + "target": { + "x": 0.7330322265625, + "y": 3.3616943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8750, + "pitch": null, + "reason": null, + "target": { + "x": 1.628662109375, + "y": 1.07275390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8751, + "pitch": null, + "reason": null, + "target": { + "x": 0.765869140625, + "y": 3.3616943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8751, + "pitch": null, + "reason": null, + "target": { + "x": 1.625732421875, + "y": 1.10986328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8751, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8753, + "pitch": null, + "reason": null, + "target": { + "x": 0.803466796875, + "y": 3.3616943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8753, + "pitch": null, + "reason": null, + "target": { + "x": 0.9840087890625, + "y": 0.952880859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8754, + "pitch": null, + "reason": null, + "target": { + "x": 0.803466796875, + "y": 3.4176025390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8754, + "pitch": null, + "reason": null, + "target": { + "x": 1.6239013671875, + "y": 1.1419677734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8758, + "pitch": null, + "reason": null, + "target": { + "x": 1.9388427734375, + "y": 2.8505859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8760, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8760, + "pitch": null, + "reason": null, + "target": { + "x": 0.9840087890625, + "y": 1.0260009765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8760, + "pitch": null, + "reason": null, + "target": { + "x": 0.7242431640625, + "y": 3.37060546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8761, + "pitch": null, + "reason": null, + "target": { + "x": 0.9840087890625, + "y": 1.0770263671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8764, + "pitch": null, + "reason": null, + "target": { + "x": 0.759033203125, + "y": 3.39013671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8765, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8766, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8766, + "pitch": null, + "reason": null, + "target": { + "x": 0.7879638671875, + "y": 3.407958984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8768, + "pitch": null, + "reason": null, + "target": { + "x": 1.178466796875, + "y": 1.4879150390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8768, + "target": { + "x": 23.3001708984375, + "y": 25.4141845703125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8768, + "sequence": 728, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8768, + "target": { + "x": 20.0538330078125, + "y": 16.33154296875, + "z": 5.99755859375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8768, + "sequence": 1017, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8771, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8771, + "target": { + "x": 20.2579345703125, + "y": 16.2344970703125, + "z": 5.997802734375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8771, + "sequence": 1018, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8772, + "pitch": null, + "reason": null, + "target": { + "x": 1.279541015625, + "y": 1.4879150390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8772, + "pitch": null, + "reason": null, + "target": { + "x": 1.4185791015625, + "y": 1.4879150390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 114819074 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8775, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8775, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8776, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 4, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8777, + "otherUnit": null, + "sequence": 729, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8779, + "pitch": null, + "reason": null, + "target": { + "x": 0.803466796875, + "y": 3.3648681640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 114819074 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8779, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8779, + "pitch": null, + "reason": null, + "target": { + "x": 1.0675048828125, + "y": 1.014404296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8779, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8780, + "pitch": null, + "reason": null, + "target": { + "x": 0.803466796875, + "y": 3.3248291015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8780, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8780, + "pitch": null, + "reason": null, + "target": { + "x": 1.1661376953125, + "y": 0.915771484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8782, + "pitch": null, + "reason": null, + "target": { + "x": 1.19970703125, + "y": 0.8682861328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8783, + "pitch": null, + "reason": null, + "target": { + "x": 0.803466796875, + "y": 3.2872314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8783, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8784, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8786, + "pitch": null, + "reason": null, + "target": { + "x": 0.7554931640625, + "y": 3.2872314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8787, + "pitch": null, + "reason": null, + "target": { + "x": 0.6890869140625, + "y": 3.2872314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8787, + "pitch": null, + "reason": null, + "target": { + "x": 1.256103515625, + "y": 1.5543212890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8787, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8787, + "target": { + "x": 20.168701171875, + "y": 13.325439453125, + "z": 5.9937744140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8787, + "sequence": 1019, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8788, + "pitch": null, + "reason": null, + "target": { + "x": 0.8028564453125, + "y": 3.37646484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8790, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8790, + "otherUnit": null, + "sequence": 1020, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 218831, + "y": 224101, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8791, + "otherUnit": null, + "sequence": 730, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8792, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8792, + "pitch": null, + "reason": null, + "target": { + "x": 0.782470703125, + "y": 3.3460693359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8794, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8795, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8795, + "pitch": null, + "reason": null, + "target": { + "x": 1.540771484375, + "y": 1.08740234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8795, + "pitch": null, + "reason": null, + "target": { + "x": 0.7525634765625, + "y": 3.3245849609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 89128964, + 100925442, + 101449730, + 108527618 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8798, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8798, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8798, + "pitch": null, + "reason": null, + "target": { + "x": 0.7198486328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 233832, + "y": 177917, + "z": 34967 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8799, + "otherUnit": null, + "sequence": 1021, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8801, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8802, + "pitch": null, + "reason": null, + "target": { + "x": 0.6904296875, + "y": 3.2879638671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8805, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.343994140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8805, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 85983233 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8805, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8806, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.384033203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 149 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8806, + "otherUnit": null, + "sequence": 1022, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8808, + "pitch": null, + "reason": null, + "target": { + "x": 1.285400390625, + "y": 1.5655517578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 88064, + "y": 452608, + "z": 49104 + }, + "snapshotUnitLink": 122, + "snapshotUpkeepPlayerId": 1, + "tag": 49807361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8808, + "otherUnit": null, + "sequence": 731, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 28, + "unitLink": 69 + } + ], + "addUnitTags": [ + 85983233 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8808, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8808, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8809, + "pitch": null, + "reason": null, + "target": { + "x": 1.3212890625, + "y": 1.582763671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8810, + "pitch": null, + "reason": null, + "target": { + "x": 1.3985595703125, + "y": 1.6180419921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8810, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8812, + "pitch": null, + "reason": null, + "target": { + "x": 1.4345703125, + "y": 1.6307373046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8813, + "pitch": null, + "reason": null, + "target": { + "x": 1.4691162109375, + "y": 1.647216796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 197249, + "y": 156770, + "z": 40931 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8813, + "otherUnit": null, + "sequence": 1023, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8813, + "pitch": null, + "reason": null, + "target": { + "x": 0.6883544921875, + "y": 3.32177734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8814, + "pitch": null, + "reason": null, + "target": { + "x": 1.515625, + "y": 1.666015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8814, + "pitch": null, + "reason": null, + "target": { + "x": 1.5523681640625, + "y": 1.68017578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8814, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8816, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8816, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8817, + "pitch": null, + "reason": null, + "target": { + "x": 1.619140625, + "y": 1.7109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8817, + "pitch": null, + "reason": null, + "target": { + "x": 0.751708984375, + "y": 3.38037109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8817, + "pitch": null, + "reason": null, + "target": { + "x": 0.6878662109375, + "y": 3.3582763671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8818, + "pitch": null, + "reason": null, + "target": { + "x": 1.64990234375, + "y": 1.7252197265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8820, + "pitch": null, + "reason": null, + "target": { + "x": 1.6776123046875, + "y": 1.742431640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8820, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8821, + "pitch": null, + "reason": null, + "target": { + "x": 1.70458984375, + "y": 1.76123046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 75759617 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x07" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8821, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8821, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8823, + "pitch": null, + "reason": null, + "target": { + "x": 1.7293701171875, + "y": 1.78076171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 8824, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 25.75, + "y": 51.75, + "z": 4.994140625 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 60555265, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8824, + "sequence": 732, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8824, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8825, + "pitch": null, + "reason": null, + "target": { + "x": 1.7481689453125, + "y": 1.80615234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8827, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8827, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8828, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8829, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.41943359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8829, + "pitch": null, + "reason": null, + "target": { + "x": 1.7728271484375, + "y": 1.837646484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8829, + "pitch": null, + "reason": null, + "target": { + "x": 1.60595703125, + "y": 1.7010498046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 235524, + "y": 217987, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8829, + "otherUnit": null, + "sequence": 733, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8829, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8831, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8832, + "pitch": null, + "reason": null, + "target": { + "x": 1.60595703125, + "y": 1.5841064453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8834, + "pitch": null, + "reason": null, + "target": { + "x": 1.60595703125, + "y": 1.445068359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8835, + "pitch": null, + "reason": null, + "target": { + "x": 0.706298828125, + "y": 3.4500732421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8835, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.3924560546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8836, + "pitch": null, + "reason": null, + "target": { + "x": 0.743896484375, + "y": 3.44970703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8836, + "pitch": null, + "reason": null, + "target": { + "x": 0.7193603515625, + "y": 3.40771484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8836, + "target": { + "x": 29.1690673828125, + "y": 22.531005859375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8836, + "sequence": 734, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 59 + } + ], + "addUnitTags": [ + 72089602 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8836, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 157 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8838, + "otherUnit": null, + "sequence": 1024, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8839, + "pitch": null, + "reason": null, + "target": { + "x": 0.6895751953125, + "y": 3.427734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8839, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8842, + "pitch": null, + "reason": null, + "target": { + "x": 0.7630615234375, + "y": 3.424560546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8842, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.4625244140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 115343361, + 115867649, + 116391937, + 116916225 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8842, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8842, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8842, + "pitch": null, + "reason": null, + "target": { + "x": 1.13427734375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 4, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8843, + "otherUnit": null, + "sequence": 735, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8843, + "pitch": null, + "reason": null, + "target": { + "x": 1.231689453125, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8843, + "pitch": null, + "reason": null, + "target": { + "x": 0.7060546875, + "y": 3.4215087890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 115343361 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8844, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 237706, + "y": 161635, + "z": 37362 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8844, + "otherUnit": null, + "sequence": 1025, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8844, + "pitch": null, + "reason": null, + "target": { + "x": 1.287353515625, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8846, + "pitch": null, + "reason": null, + "target": { + "x": 0.7459716796875, + "y": 3.386474609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8846, + "pitch": null, + "reason": null, + "target": { + "x": 1.3419189453125, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8847, + "target": { + "x": 31.328369140625, + "y": 19.468505859375, + "z": 4.0484619140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8847, + "sequence": 1026, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8847, + "pitch": null, + "reason": null, + "target": { + "x": 1.438232421875, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8849, + "pitch": null, + "reason": null, + "target": { + "x": 0.7159423828125, + "y": 3.37353515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8849, + "pitch": null, + "reason": null, + "target": { + "x": 1.7991943359375, + "y": 1.8953857421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8849, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8849, + "pitch": null, + "reason": null, + "target": { + "x": 1.493896484375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8850, + "pitch": null, + "reason": null, + "target": { + "x": 1.8299560546875, + "y": 1.94873046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8851, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.39306640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8851, + "pitch": null, + "reason": null, + "target": { + "x": 1.8531494140625, + "y": 1.98388671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0e" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8851, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8851, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8851, + "pitch": null, + "reason": null, + "target": { + "x": 1.5855712890625, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8851, + "pitch": null, + "reason": null, + "target": { + "x": 1.6168212890625, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8853, + "pitch": null, + "reason": null, + "target": { + "x": 1.60595703125, + "y": 1.324951171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8853, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8853, + "pitch": null, + "reason": null, + "target": { + "x": 0.73779296875, + "y": 3.42138671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8854, + "pitch": null, + "reason": null, + "target": { + "x": 0.6949462890625, + "y": 3.4302978515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8854, + "pitch": null, + "reason": null, + "target": { + "x": 1.789306640625, + "y": 1.2586669921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 258787, + "y": 162520, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8855, + "otherUnit": null, + "sequence": 1027, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8857, + "pitch": null, + "reason": null, + "target": { + "x": 0.7357177734375, + "y": 3.4407958984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8857, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8858, + "pitch": null, + "reason": null, + "target": { + "x": 0.76123046875, + "y": 3.422119140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 275789, + "y": 175807, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8858, + "otherUnit": null, + "sequence": 736, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8861, + "pitch": null, + "reason": null, + "target": { + "x": 0.7435302734375, + "y": 3.3927001953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8861, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8861, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 62914564, + 110624769 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8862, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8864, + "pitch": null, + "reason": null, + "target": { + "x": 0.714111328125, + "y": 3.418212890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8864, + "otherUnit": null, + "sequence": 1028, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 108789762, + 115605506, + 115867649, + 116391937, + 116916225 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8865, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8866, + "sequence": 1029, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8868, + "pitch": null, + "reason": null, + "target": { + "x": 0.75048828125, + "y": 3.4136962890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8868, + "pitch": null, + "reason": null, + "target": { + "x": 1.6168212890625, + "y": 0.9989013671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8869, + "otherUnit": null, + "sequence": 737, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8869, + "pitch": null, + "reason": null, + "target": { + "x": 1.64697265625, + "y": 1.0941162109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 108789762 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8870, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8870, + "pitch": null, + "reason": null, + "target": { + "x": 1.7108154296875, + "y": 1.1578369140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8870, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8872, + "sequence": 738, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 115605506 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8873, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 251200, + "y": 472275, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8877, + "otherUnit": null, + "sequence": 739, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 262070, + "y": 170083, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8877, + "otherUnit": null, + "sequence": 1030, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8879, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8880, + "target": { + "x": 67.5953369140625, + "y": 49.7142333984375, + "z": 6.00341796875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8880, + "sequence": 740, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8880, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8881, + "pitch": null, + "reason": null, + "target": { + "x": 1.85986328125, + "y": 2.0184326171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 259852, + "y": 165920, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8881, + "otherUnit": null, + "sequence": 1031, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8884, + "pitch": null, + "reason": null, + "target": { + "x": 1.8643798828125, + "y": 2.052978515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8884, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8884, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8886, + "pitch": null, + "reason": null, + "target": { + "x": 1.8704833984375, + "y": 2.0897216796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8887, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8888, + "pitch": null, + "reason": null, + "target": { + "x": 1.9599609375, + "y": 1.2586669921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 115867649, + 116391937, + 116916225, + 117440513 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8888, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8888, + "pitch": null, + "reason": null, + "target": { + "x": 1.7677001953125, + "y": 1.1868896484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8888, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8890, + "pitch": null, + "reason": null, + "target": { + "x": 1.8187255859375, + "y": 1.1868896484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8894, + "pitch": null, + "reason": null, + "target": { + "x": 1.9049072265625, + "y": 2.0589599609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 266351, + "y": 156089, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8894, + "otherUnit": null, + "sequence": 1032, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8895, + "pitch": null, + "reason": null, + "target": { + "x": 1.92138671875, + "y": 1.994384765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8898, + "pitch": null, + "reason": null, + "target": { + "x": 1.9273681640625, + "y": 1.959228515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8899, + "pitch": null, + "reason": null, + "target": { + "x": 1.9378662109375, + "y": 1.9111328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8901, + "pitch": null, + "reason": null, + "target": { + "x": 1.941650390625, + "y": 1.8662109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0e" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8901, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8903, + "pitch": null, + "reason": null, + "target": { + "x": 1.9356689453125, + "y": 1.8189697265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8903, + "pitch": null, + "reason": null, + "target": { + "x": 1.9288330078125, + "y": 1.7791748046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8905, + "pitch": null, + "reason": null, + "target": { + "x": 1.93408203125, + "y": 1.7236328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8905, + "pitch": null, + "reason": null, + "target": { + "x": 1.8255615234375, + "y": 0.91845703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 4, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8905, + "otherUnit": null, + "sequence": 742, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8906, + "pitch": null, + "reason": null, + "target": { + "x": 1.9476318359375, + "y": 1.651611328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 115867649 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8906, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8907, + "pitch": null, + "reason": null, + "target": { + "x": 1.9521484375, + "y": 1.61572265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8910, + "pitch": null, + "reason": null, + "target": { + "x": 1.9588623046875, + "y": 1.574462890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8910, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8913, + "pitch": null, + "reason": null, + "target": { + "x": 2.0345458984375, + "y": 1.5504150390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8914, + "pitch": null, + "reason": null, + "target": { + "x": 1.7208251953125, + "y": 1.02783203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8914, + "pitch": null, + "reason": null, + "target": { + "x": 2.119384765625, + "y": 1.5518798828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8914, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 300060, + "y": 164713, + "z": 33159 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8914, + "otherUnit": null, + "sequence": 743, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8916, + "pitch": null, + "reason": null, + "target": { + "x": 1.7208251953125, + "y": 1.02783203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8917, + "pitch": null, + "reason": null, + "target": { + "x": 2.0389404296875, + "y": 1.2586669921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8918, + "pitch": null, + "reason": null, + "target": { + "x": 2.15234375, + "y": 1.5609130859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8918, + "pitch": null, + "reason": null, + "target": { + "x": 2.130615234375, + "y": 1.2586669921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8920, + "pitch": null, + "reason": null, + "target": { + "x": 1.8255615234375, + "y": 0.9730224609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8920, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8921, + "pitch": null, + "reason": null, + "target": { + "x": 1.83544921875, + "y": 1.0333251953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8922, + "pitch": null, + "reason": null, + "target": { + "x": 1.8480224609375, + "y": 1.077392578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8922, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8924, + "pitch": null, + "reason": null, + "target": { + "x": 1.8612060546875, + "y": 1.11279296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8924, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8925, + "pitch": null, + "reason": null, + "target": { + "x": 1.8831787109375, + "y": 1.15869140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8925, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8927, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 66846723, + 79429638, + 80216068, + 93585410, + 103022593, + 104857602, + 110886914 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0c" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8931, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 280897, + "y": 156406, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8931, + "otherUnit": null, + "sequence": 1033, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 305152, + "y": 440320, + "z": 32768 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 94896129, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8935, + "otherUnit": null, + "sequence": 744, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 89128964, + 100925442, + 101449730, + 108527618 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8936, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8936, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 65798145, + 67371010, + 73924610, + 77856769, + 78118913, + 79691779, + 80740355, + 94371841, + 96206851, + 101187587, + 104071170, + 106168321, + 107216898, + 110362626, + 111935490, + 112984065 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8940, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8940, + "pitch": null, + "reason": null, + "target": { + "x": 2.22021484375, + "y": 1.34375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 117178370 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8940, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 94371841 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8942, + "userid": { + "userId": 2 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 310731, + "y": 158546, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8943, + "otherUnit": null, + "sequence": 745, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8943, + "pitch": null, + "reason": null, + "target": { + "x": 1.884765625, + "y": 1.1868896484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8944, + "pitch": null, + "reason": null, + "target": { + "x": 1.7816162109375, + "y": 1.02783203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 66584578 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8944, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8944, + "pitch": null, + "reason": null, + "target": { + "x": 1.9439697265625, + "y": 1.13818359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8944, + "pitch": null, + "reason": null, + "target": { + "x": 1.99267578125, + "y": 1.0894775390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8946, + "pitch": null, + "reason": null, + "target": { + "x": 1.82568359375, + "y": 1.02783203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8946, + "pitch": null, + "reason": null, + "target": { + "x": 2.22021484375, + "y": 1.2237548828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8946, + "pitch": null, + "reason": null, + "target": { + "x": 2.043701171875, + "y": 1.038330078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8947, + "pitch": null, + "reason": null, + "target": { + "x": 1.886474609375, + "y": 1.0758056640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8947, + "pitch": null, + "reason": null, + "target": { + "x": 2.22021484375, + "y": 1.125732421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8948, + "pitch": null, + "reason": null, + "target": { + "x": 1.9288330078125, + "y": 1.1182861328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8948, + "pitch": null, + "reason": null, + "target": { + "x": 2.13134765625, + "y": 1.608154296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8948, + "target": { + "x": 39.875732421875, + "y": 17.7506103515625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8948, + "sequence": 746, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8948, + "target": { + "x": 36.4285888671875, + "y": 19.651611328125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8948, + "sequence": 1034, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8951, + "pitch": null, + "reason": null, + "target": { + "x": 2.08935546875, + "y": 1.683837890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8951, + "pitch": null, + "reason": null, + "target": { + "x": 1.9080810546875, + "y": 1.1845703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8953, + "target": { + "x": 39.2393798828125, + "y": 17.722900390625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8953, + "sequence": 747, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8953, + "pitch": null, + "reason": null, + "target": { + "x": 2.043701171875, + "y": 1.0882568359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8953, + "pitch": null, + "reason": null, + "target": { + "x": 1.7650146484375, + "y": 1.039306640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8954, + "pitch": null, + "reason": null, + "target": { + "x": 2.045166015625, + "y": 1.74609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8954, + "pitch": null, + "reason": null, + "target": { + "x": 1.9583740234375, + "y": 1.20068359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8954, + "pitch": null, + "reason": null, + "target": { + "x": 2.043701171875, + "y": 1.1485595703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8954, + "pitch": null, + "reason": null, + "target": { + "x": 1.793701171875, + "y": 1.0521240234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8955, + "pitch": null, + "reason": null, + "target": { + "x": 2.0091552734375, + "y": 1.7987060546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8955, + "pitch": null, + "reason": null, + "target": { + "x": 1.9893798828125, + "y": 1.20703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 304636, + "y": 178414, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8955, + "otherUnit": null, + "sequence": 1035, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8957, + "pitch": null, + "reason": null, + "target": { + "x": 1.9776611328125, + "y": 1.837646484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8957, + "pitch": null, + "reason": null, + "target": { + "x": 1.951416015625, + "y": 1.8662109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8957, + "pitch": null, + "reason": null, + "target": { + "x": 2.032470703125, + "y": 1.2103271484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8957, + "pitch": null, + "reason": null, + "target": { + "x": 2.22021484375, + "y": 0.9930419921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8957, + "pitch": null, + "reason": null, + "target": { + "x": 1.8270263671875, + "y": 1.0679931640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8958, + "pitch": null, + "reason": null, + "target": { + "x": 2.067626953125, + "y": 1.212158203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8958, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8958, + "pitch": null, + "reason": null, + "target": { + "x": 1.863525390625, + "y": 1.0859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8959, + "target": { + "x": 39.513427734375, + "y": 15.7620849609375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8959, + "sequence": 748, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 299680, + "y": 154587, + "z": 33159 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8959, + "otherUnit": null, + "sequence": 1036, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8961, + "pitch": null, + "reason": null, + "target": { + "x": 2.1182861328125, + "y": 1.21630859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8961, + "pitch": null, + "reason": null, + "target": { + "x": 1.9014892578125, + "y": 1.104736328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 106430465, + 112197633 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8962, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8962, + "pitch": null, + "reason": null, + "target": { + "x": 2.154052734375, + "y": 1.2193603515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8962, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8963, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8965, + "pitch": null, + "reason": null, + "target": { + "x": 2.190673828125, + "y": 1.219970703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 82837505 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8965, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8966, + "target": { + "x": 37.942138671875, + "y": 14.58837890625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8966, + "sequence": 749, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8966, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8968, + "pitch": null, + "reason": null, + "target": { + "x": 1.9696044921875, + "y": 1.131103515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8968, + "pitch": null, + "reason": null, + "target": { + "x": 1.9364013671875, + "y": 1.8271484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8968, + "pitch": null, + "reason": null, + "target": { + "x": 2.223876953125, + "y": 1.219970703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8970, + "pitch": null, + "reason": null, + "target": { + "x": 2.0400390625, + "y": 1.16064453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8970, + "pitch": null, + "reason": null, + "target": { + "x": 2.0679931640625, + "y": 1.188720703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8970, + "pitch": null, + "reason": null, + "target": { + "x": 1.9251708984375, + "y": 1.7708740234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8970, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8970, + "target": { + "x": 41.1112060546875, + "y": 20.356201171875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8970, + "sequence": 750, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 296364, + "y": 146969, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 8970, + "otherUnit": null, + "sequence": 1037, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8972, + "pitch": null, + "reason": null, + "target": { + "x": 2.0968017578125, + "y": 1.2294921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8972, + "pitch": null, + "reason": null, + "target": { + "x": 1.9183349609375, + "y": 1.7371826171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8972, + "pitch": null, + "reason": null, + "target": { + "x": 2.2647705078125, + "y": 1.22021484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8972, + "pitch": null, + "reason": null, + "target": { + "x": 1.9307861328125, + "y": 1.118896484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8973, + "pitch": null, + "reason": null, + "target": { + "x": 1.9078369140625, + "y": 1.6876220703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8973, + "target": { + "x": 40.5166015625, + "y": 20.8323974609375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8973, + "sequence": 751, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8973, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8974, + "pitch": null, + "reason": null, + "target": { + "x": 1.9056396484375, + "y": 1.6314697265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8974, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8976, + "pitch": null, + "reason": null, + "target": { + "x": 1.904052734375, + "y": 1.57666015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8976, + "pitch": null, + "reason": null, + "target": { + "x": 2.3067626953125, + "y": 1.217529296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8976, + "pitch": null, + "reason": null, + "target": { + "x": 2.22021484375, + "y": 1.0499267578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8977, + "pitch": null, + "reason": null, + "target": { + "x": 2.22021484375, + "y": 1.302734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8977, + "target": { + "x": 39.5556640625, + "y": 26.3541259765625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8977, + "sequence": 752, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8977, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8977, + "pitch": null, + "reason": null, + "target": { + "x": 1.964599609375, + "y": 1.137939453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8979, + "pitch": null, + "reason": null, + "target": { + "x": 1.90185546875, + "y": 1.5301513671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8979, + "pitch": null, + "reason": null, + "target": { + "x": 2.0831298828125, + "y": 1.1485595703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8980, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8980, + "pitch": null, + "reason": null, + "target": { + "x": 2.1434326171875, + "y": 1.0882568359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8980, + "pitch": null, + "reason": null, + "target": { + "x": 2.002197265625, + "y": 1.163330078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8981, + "target": { + "x": 39.10693359375, + "y": 26.751953125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8981, + "sequence": 753, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8981, + "pitch": null, + "reason": null, + "target": { + "x": 2.22021484375, + "y": 1.36279296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8981, + "pitch": null, + "reason": null, + "target": { + "x": 2.0299072265625, + "y": 1.1824951171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8983, + "pitch": null, + "reason": null, + "target": { + "x": 2.22021484375, + "y": 1.4891357421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8984, + "pitch": null, + "reason": null, + "target": { + "x": 2.3333740234375, + "y": 1.19287109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8984, + "pitch": null, + "reason": null, + "target": { + "x": 2.22021484375, + "y": 1.7608642578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8984, + "pitch": null, + "reason": null, + "target": { + "x": 2.057861328125, + "y": 1.2021484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8985, + "pitch": null, + "reason": null, + "target": { + "x": 2.22021484375, + "y": 1.90625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8985, + "target": { + "x": 36.66552734375, + "y": 36.9327392578125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8985, + "sequence": 754, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 8985, + "target": { + "x": 36.2703857421875, + "y": 16.7547607421875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 8985, + "sequence": 1038, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8985, + "pitch": null, + "reason": null, + "target": { + "x": 2.086669921875, + "y": 1.222412109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8987, + "pitch": null, + "reason": null, + "target": { + "x": 2.22021484375, + "y": 1.96630859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8987, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8988, + "pitch": null, + "reason": null, + "target": { + "x": 2.3604736328125, + "y": 1.1751708984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8991, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8992, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 8994, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8996, + "pitch": null, + "reason": null, + "target": { + "x": 2.354736328125, + "y": 1.1380615234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 8999, + "pitch": null, + "reason": null, + "target": { + "x": 2.3433837890625, + "y": 1.095458984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 71565320, + 112459779, + 116391937, + 116916225, + 117440513 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 8999, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9000, + "target": { + "x": 31.6173095703125, + "y": 21.9095458984375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9000, + "sequence": 1039, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9002, + "pitch": null, + "reason": null, + "target": { + "x": 2.33251953125, + "y": 1.0654296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9002, + "otherUnit": null, + "sequence": 755, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 71565320 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9003, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9003, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9005, + "pitch": null, + "reason": null, + "target": { + "x": 2.32177734375, + "y": 1.0347900390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9005, + "sequence": 756, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 260414, + "y": 173410, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9005, + "otherUnit": null, + "sequence": 1040, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 112459779 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9006, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9007, + "pitch": null, + "reason": null, + "target": { + "x": 1.8988037109375, + "y": 1.4964599609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9007, + "sequence": 757, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9009, + "pitch": null, + "reason": null, + "target": { + "x": 1.89208984375, + "y": 1.443115234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9009, + "pitch": null, + "reason": null, + "target": { + "x": 1.8875732421875, + "y": 1.4027099609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 116391937 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9009, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9011, + "pitch": null, + "reason": null, + "target": { + "x": 1.891357421875, + "y": 1.3299560546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9011, + "target": { + "x": 31.1654052734375, + "y": 19.2110595703125, + "z": 4.153564453125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9011, + "sequence": 1041, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x18" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9014, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9014, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9017, + "pitch": null, + "reason": null, + "target": { + "x": 2.1434326171875, + "y": 1.136962890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9018, + "pitch": null, + "reason": null, + "target": { + "x": 2.2806396484375, + "y": 1.056396484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9018, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9018, + "pitch": null, + "reason": null, + "target": { + "x": 2.1434326171875, + "y": 1.1729736328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 244895, + "y": 196862, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9018, + "otherUnit": null, + "sequence": 1042, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9021, + "pitch": null, + "reason": null, + "target": { + "x": 2.2545166015625, + "y": 1.0924072265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 68419585, + 69206018, + 93061123, + 100139011, + 103022593, + 111411202 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9021, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9021, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9022, + "pitch": null, + "reason": null, + "target": { + "x": 2.230224609375, + "y": 1.1251220703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 305152, + "y": 440320, + "z": 32768 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 94896129, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9022, + "otherUnit": null, + "sequence": 758, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9024, + "pitch": null, + "reason": null, + "target": { + "x": 1.09375, + "y": 0.945556640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9025, + "pitch": null, + "reason": null, + "target": { + "x": 2.20654296875, + "y": 1.1541748046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9025, + "otherUnit": null, + "sequence": 1043, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9026, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9029, + "pitch": null, + "reason": null, + "target": { + "x": 2.1705322265625, + "y": 1.18359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9029, + "sequence": 1044, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9031, + "pitch": null, + "reason": null, + "target": { + "x": 1.93408203125, + "y": 1.3486328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9032, + "pitch": null, + "reason": null, + "target": { + "x": 1.967041015625, + "y": 1.3734130859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9032, + "pitch": null, + "reason": null, + "target": { + "x": 2.1431884765625, + "y": 1.211181640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9032, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9032, + "sequence": 1045, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9033, + "pitch": null, + "reason": null, + "target": { + "x": 2.006103515625, + "y": 1.399658203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9035, + "pitch": null, + "reason": null, + "target": { + "x": 2.1221923828125, + "y": 1.2376708984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 284531, + "y": 331841, + "z": 32829 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9035, + "otherUnit": null, + "sequence": 759, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9035, + "sequence": 1046, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9036, + "pitch": null, + "reason": null, + "target": { + "x": 2.0968017578125, + "y": 1.276611328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9036, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9037, + "pitch": null, + "reason": null, + "target": { + "x": 2.0968017578125, + "y": 1.3206787109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9037, + "target": { + "x": 31.60302734375, + "y": 40.8253173828125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9037, + "sequence": 760, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9039, + "pitch": null, + "reason": null, + "target": { + "x": 2.0968017578125, + "y": 1.3526611328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9039, + "pitch": null, + "reason": null, + "target": { + "x": 2.0997314453125, + "y": 1.2685546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9039, + "sequence": 1047, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9040, + "pitch": null, + "reason": null, + "target": { + "x": 2.58154296875, + "y": 2.4178466796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9043, + "pitch": null, + "reason": null, + "target": { + "x": 2.0750732421875, + "y": 1.29248046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9043, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9043, + "pitch": null, + "reason": null, + "target": { + "x": 2.0968017578125, + "y": 1.254150390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9047, + "pitch": null, + "reason": null, + "target": { + "x": 2.0421142578125, + "y": 1.4281005859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 66322434 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9047, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9047, + "pitch": null, + "reason": null, + "target": { + "x": 2.0968017578125, + "y": 1.2901611328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 239493, + "y": 171698, + "z": 34400 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9048, + "otherUnit": null, + "sequence": 1048, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9050, + "pitch": null, + "reason": null, + "target": { + "x": 2.0667724609375, + "y": 1.4656982421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 257 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 391168, + "y": 309248, + "z": 32718 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9050, + "otherUnit": null, + "sequence": 761, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9050, + "pitch": null, + "reason": null, + "target": { + "x": 2.0968017578125, + "y": 1.3228759765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9052, + "pitch": null, + "reason": null, + "target": { + "x": 2.080322265625, + "y": 1.49560546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9054, + "pitch": null, + "reason": null, + "target": { + "x": 2.58154296875, + "y": 2.496826171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 12, + "unitLink": 45 + } + ], + "addUnitTags": [ + 63963138 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9054, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9054, + "target": { + "x": 28.4683837890625, + "y": 19.18115234375, + "z": 4.8353271484375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9054, + "sequence": 1049, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9055, + "pitch": null, + "reason": null, + "target": { + "x": 2.58154296875, + "y": 2.755859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 135 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9055, + "otherUnit": null, + "sequence": 1050, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9056, + "pitch": null, + "reason": null, + "target": { + "x": 2.0303955078125, + "y": 1.31982421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9056, + "pitch": null, + "reason": null, + "target": { + "x": 2.58154296875, + "y": 2.822265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9058, + "pitch": null, + "reason": null, + "target": { + "x": 1.985595703125, + "y": 1.2750244140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9058, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9059, + "pitch": null, + "reason": null, + "target": { + "x": 1.91357421875, + "y": 1.2030029296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 111149057, + 111673345 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9059, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9061, + "pitch": null, + "reason": null, + "target": { + "x": 1.886474609375, + "y": 1.1759033203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9061, + "pitch": null, + "reason": null, + "target": { + "x": 2.078125, + "y": 1.5361328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9062, + "pitch": null, + "reason": null, + "target": { + "x": 2.0728759765625, + "y": 1.568359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9063, + "pitch": null, + "reason": null, + "target": { + "x": 1.815185546875, + "y": 1.1046142578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9063, + "pitch": null, + "reason": null, + "target": { + "x": 1.786376953125, + "y": 1.0758056640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 50593795, + 72876035, + 74973188, + 84672513 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9063, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9063, + "pitch": null, + "reason": null, + "target": { + "x": 2.0657958984375, + "y": 1.3304443359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9065, + "pitch": null, + "reason": null, + "target": { + "x": 1.744873046875, + "y": 1.0343017578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 87293955, + 109576193, + 109838337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9065, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9065, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9066, + "pitch": null, + "reason": null, + "target": { + "x": 2.0260009765625, + "y": 1.296630859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9067, + "pitch": null, + "reason": null, + "target": { + "x": 2.0511474609375, + "y": 1.6007080078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9067, + "target": { + "x": 46.25, + "y": 46.75, + "z": 4.235107421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9067, + "sequence": 762, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9069, + "pitch": null, + "reason": null, + "target": { + "x": 1.9835205078125, + "y": 1.2581787109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9070, + "pitch": null, + "reason": null, + "target": { + "x": 2.01806640625, + "y": 1.606689453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9070, + "target": { + "x": 46.25, + "y": 46.25, + "z": 4.1103515625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9070, + "sequence": 763, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9070, + "pitch": null, + "reason": null, + "target": { + "x": 1.9422607421875, + "y": 1.2200927734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9073, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9073, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9073, + "pitch": null, + "reason": null, + "target": { + "x": 1.896240234375, + "y": 1.1771240234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9074, + "pitch": null, + "reason": null, + "target": { + "x": 1.85546875, + "y": 1.138671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9076, + "pitch": null, + "reason": null, + "target": { + "x": 2.30322265625, + "y": 1.98486328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9076, + "otherUnit": null, + "sequence": 1051, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9076, + "pitch": null, + "reason": null, + "target": { + "x": 1.8258056640625, + "y": 1.1107177734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9077, + "pitch": null, + "reason": null, + "target": { + "x": 1.985107421875, + "y": 1.616455078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9077, + "pitch": null, + "reason": null, + "target": { + "x": 1.783203125, + "y": 1.070556640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9078, + "sequence": 1052, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9078, + "pitch": null, + "reason": null, + "target": { + "x": 1.759765625, + "y": 1.0484619140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9080, + "pitch": null, + "reason": null, + "target": { + "x": 2.444580078125, + "y": 2.2193603515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9081, + "pitch": null, + "reason": null, + "target": { + "x": 2.1707763671875, + "y": 2.1597900390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9082, + "pitch": null, + "reason": null, + "target": { + "x": 1.95556640625, + "y": 2.0606689453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9085, + "pitch": null, + "reason": null, + "target": { + "x": 2.0538330078125, + "y": 1.3179931640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 58720257, + 94633986, + 115081217 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9085, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 229427, + "y": 277739, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9087, + "otherUnit": null, + "sequence": 764, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9088, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9088, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9089, + "pitch": null, + "reason": null, + "target": { + "x": 2.02978515625, + "y": 1.347412109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9089, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9091, + "pitch": null, + "reason": null, + "target": { + "x": 1.9521484375, + "y": 1.630615234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9091, + "otherUnit": null, + "sequence": 1054, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9093, + "pitch": null, + "reason": null, + "target": { + "x": 2.008544921875, + "y": 1.38037109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9095, + "pitch": null, + "reason": null, + "target": { + "x": 1.943115234375, + "y": 1.596923828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 278528, + "y": 108544, + "z": 32768 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 6029313, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9095, + "otherUnit": null, + "sequence": 1055, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9096, + "pitch": null, + "reason": null, + "target": { + "x": 1.9400634765625, + "y": 1.513671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9098, + "pitch": null, + "reason": null, + "target": { + "x": 1.9935302734375, + "y": 1.4215087890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9098, + "target": { + "x": 28.1331787109375, + "y": 33.37353515625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9098, + "sequence": 765, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9099, + "pitch": null, + "reason": null, + "target": { + "x": 1.9400634765625, + "y": 1.4754638671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9100, + "pitch": null, + "reason": null, + "target": { + "x": 1.95556640625, + "y": 2.149169921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9102, + "pitch": null, + "reason": null, + "target": { + "x": 1.95556640625, + "y": 2.2850341796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9103, + "pitch": null, + "reason": null, + "target": { + "x": 1.991455078125, + "y": 1.454833984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9103, + "target": { + "x": 29.4810791015625, + "y": 44.13623046875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9103, + "sequence": 766, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9103, + "pitch": null, + "reason": null, + "target": { + "x": 1.95556640625, + "y": 2.3956298828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9106, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9108, + "pitch": null, + "reason": null, + "target": { + "x": 1.99560546875, + "y": 1.4925537109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9108, + "pitch": null, + "reason": null, + "target": { + "x": 1.95556640625, + "y": 2.2786865234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9110, + "pitch": null, + "reason": null, + "target": { + "x": 1.95556640625, + "y": 2.1048583984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9111, + "pitch": null, + "reason": null, + "target": { + "x": 1.9949951171875, + "y": 1.53466796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9111, + "target": { + "x": 29.2530517578125, + "y": 30.292724609375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9111, + "sequence": 767, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9111, + "pitch": null, + "reason": null, + "target": { + "x": 1.95556640625, + "y": 2.03857421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9114, + "pitch": null, + "reason": null, + "target": { + "x": 1.989013671875, + "y": 1.5657958984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9114, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9114, + "pitch": null, + "reason": null, + "target": { + "x": 1.95556640625, + "y": 1.978515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9115, + "pitch": null, + "reason": null, + "target": { + "x": 1.95556640625, + "y": 1.8173828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 116916225, + 117440513, + 117702658, + 118226945, + 118489090, + 118751233 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9117, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9118, + "otherUnit": null, + "sequence": 768, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 116916225 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9119, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9124, + "sequence": 769, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9125, + "sequence": 770, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9125, + "sequence": 771, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 117440513 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9125, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9126, + "sequence": 772, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 117702658, + 118226945 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0c" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9126, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9126, + "sequence": 773, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9128, + "pitch": null, + "reason": null, + "target": { + "x": 1.95556640625, + "y": 1.6688232421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 118489090 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9128, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9129, + "pitch": null, + "reason": null, + "target": { + "x": 1.95556640625, + "y": 1.5455322265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 65798145, + 67371010, + 73924610, + 77856769, + 78118913, + 79691779, + 80740355, + 94371841, + 96206851, + 101187587, + 104071170, + 106168321, + 106430465, + 107216898, + 110362626, + 111935490, + 112984065 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9130, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9132, + "pitch": null, + "reason": null, + "target": { + "x": 1.9378662109375, + "y": 1.5272216796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9137, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 5, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 290816, + "y": 114688, + "z": 32718 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9137, + "otherUnit": null, + "sequence": 1066, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9144, + "pitch": null, + "reason": null, + "target": { + "x": 1.9371337890625, + "y": 1.5714111328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9144, + "sequence": 775, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9145, + "pitch": null, + "reason": null, + "target": { + "x": 1.9371337890625, + "y": 1.629150390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9145, + "pitch": null, + "reason": null, + "target": { + "x": 1.9393310546875, + "y": 1.7042236328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 118751233 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9145, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 118751233 + ], + "removeMask": { + "OneIndices": [ + 16 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9145, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9145, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9147, + "pitch": null, + "reason": null, + "target": { + "x": 1.693603515625, + "y": 1.0343017578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 303963, + "y": 111134, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9147, + "otherUnit": null, + "sequence": 1067, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9148, + "pitch": null, + "reason": null, + "target": { + "x": 1.9423828125, + "y": 1.76416015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 306563, + "y": 108364, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9150, + "otherUnit": null, + "sequence": 1068, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9152, + "pitch": null, + "reason": null, + "target": { + "x": 1.943115234375, + "y": 1.8099365234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9152, + "pitch": null, + "reason": null, + "target": { + "x": 1.8607177734375, + "y": 1.5455322265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9154, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9155, + "pitch": null, + "reason": null, + "target": { + "x": 1.6832275390625, + "y": 0.9990234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9155, + "pitch": null, + "reason": null, + "target": { + "x": 1.9454345703125, + "y": 1.8428955078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": 8114, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9155, + "pitch": null, + "reason": null, + "target": { + "x": 1.7236328125, + "y": 1.0343017578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9158, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9158, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 217180, + "y": 218108, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9159, + "otherUnit": null, + "sequence": 776, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9162, + "pitch": null, + "reason": null, + "target": { + "x": 2.216064453125, + "y": 3.2010498046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9162, + "pitch": null, + "reason": null, + "target": { + "x": 1.8607177734375, + "y": 1.5992431640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9162, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9163, + "pitch": null, + "reason": null, + "target": { + "x": 1.8607177734375, + "y": 1.7161865234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9163, + "pitch": null, + "reason": null, + "target": { + "x": 1.6947021484375, + "y": 1.019287109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9166, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9169, + "pitch": null, + "reason": null, + "target": { + "x": 1.8607177734375, + "y": 1.8299560546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9170, + "pitch": null, + "reason": null, + "target": { + "x": 1.8607177734375, + "y": 1.968994140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9171, + "target": { + "x": 28.555419921875, + "y": 35.5670166015625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9171, + "sequence": 777, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9171, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9173, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9174, + "pitch": null, + "reason": null, + "target": { + "x": 1.9385986328125, + "y": 1.8106689453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9176, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 98304003 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9177, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9178, + "pitch": null, + "reason": null, + "target": { + "x": 1.93408203125, + "y": 1.7784423828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9178, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9181, + "pitch": null, + "reason": null, + "target": { + "x": 1.930419921875, + "y": 1.7259521484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9181, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9182, + "pitch": null, + "reason": null, + "target": { + "x": 1.9295654296875, + "y": 1.6854248046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9184, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9185, + "pitch": null, + "reason": null, + "target": { + "x": 2.3272705078125, + "y": 3.261962890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9185, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9186, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9186, + "pitch": null, + "reason": null, + "target": { + "x": 2.3272705078125, + "y": 3.261962890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 77070339 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9188, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9189, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9192, + "pitch": null, + "reason": null, + "target": { + "x": 1.93115234375, + "y": 1.6539306640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 80216068, + 103022593 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0e" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9192, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9192, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9195, + "pitch": null, + "reason": null, + "target": { + "x": 1.935546875, + "y": 1.598388671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 278157, + "y": 94041, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9195, + "otherUnit": null, + "sequence": 1069, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9196, + "pitch": null, + "reason": null, + "target": { + "x": 1.95654296875, + "y": 1.536865234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 100139011, + 103546884 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9196, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9199, + "pitch": null, + "reason": null, + "target": { + "x": 1.96630859375, + "y": 1.503173828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 9199, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 34.5, + "y": 11.75, + "z": 4 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 6291457, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9199, + "sequence": 1070, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 9200, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 36.25, + "y": 57.25, + "z": 4 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 113246209, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9200, + "sequence": 778, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9201, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9203, + "pitch": null, + "reason": null, + "target": { + "x": 1.978271484375, + "y": 1.4656982421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9206, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.8927001953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 107479043, + 108265474 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9207, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9210, + "pitch": null, + "reason": null, + "target": { + "x": 1.988037109375, + "y": 1.43115234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 9210, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 36.25, + "y": 57.25, + "z": 4 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 113246209, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9210, + "sequence": 779, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 176 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9214, + "otherUnit": null, + "sequence": 780, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9219, + "pitch": null, + "reason": null, + "target": { + "x": 2.3272705078125, + "y": 3.294677734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9221, + "pitch": null, + "reason": null, + "target": { + "x": 2.3272705078125, + "y": 3.3331298828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9223, + "pitch": null, + "reason": null, + "target": { + "x": 2.0068359375, + "y": 1.3974609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9225, + "pitch": null, + "reason": null, + "target": { + "x": 2.038330078125, + "y": 1.3388671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9226, + "pitch": null, + "reason": null, + "target": { + "x": 2.05859375, + "y": 1.3021240234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 317440, + "y": 468992, + "z": 32768 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 113508353, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9226, + "otherUnit": null, + "sequence": 781, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9227, + "pitch": null, + "reason": null, + "target": { + "x": 2.083984375, + "y": 1.2608642578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9229, + "pitch": null, + "reason": null, + "target": { + "x": 2.10205078125, + "y": 1.232421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9229, + "pitch": null, + "reason": null, + "target": { + "x": 2.3272705078125, + "y": 3.2938232421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 176 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9230, + "otherUnit": null, + "sequence": 782, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 99352577 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9230, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9230, + "target": { + "x": 30.331787109375, + "y": 13.358642578125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9230, + "sequence": 1075, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9233, + "pitch": null, + "reason": null, + "target": { + "x": 1.516357421875, + "y": 1.277099609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9234, + "pitch": null, + "reason": null, + "target": { + "x": 2.3272705078125, + "y": 3.327880859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 93061123 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9237, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 13, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 243712, + "y": 108544, + "z": 40906 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9238, + "otherUnit": null, + "sequence": 1076, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9241, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 296960, + "y": 468992, + "z": 32768 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 113246209, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9244, + "otherUnit": null, + "sequence": 783, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9244, + "pitch": null, + "reason": null, + "target": { + "x": 2.1319580078125, + "y": 1.1234130859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9245, + "pitch": null, + "reason": null, + "target": { + "x": 1.5478515625, + "y": 1.2684326171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9247, + "pitch": null, + "reason": null, + "target": { + "x": 1.614501953125, + "y": 1.2501220703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9248, + "pitch": null, + "reason": null, + "target": { + "x": 1.6595458984375, + "y": 1.24169921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9249, + "pitch": null, + "reason": null, + "target": { + "x": 2.1319580078125, + "y": 1.0770263671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9251, + "pitch": null, + "reason": null, + "target": { + "x": 1.699951171875, + "y": 1.2423095703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9251, + "pitch": null, + "reason": null, + "target": { + "x": 2.1319580078125, + "y": 1.01904296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9252, + "pitch": null, + "reason": null, + "target": { + "x": 2.1319580078125, + "y": 0.925048828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9255, + "pitch": null, + "reason": null, + "target": { + "x": 1.740478515625, + "y": 1.245361328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9256, + "pitch": null, + "reason": null, + "target": { + "x": 1.7779541015625, + "y": 1.2435302734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 108003330 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9256, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 305804, + "y": 103005, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9256, + "otherUnit": null, + "sequence": 1077, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9259, + "pitch": null, + "reason": null, + "target": { + "x": 1.8106689453125, + "y": 1.24169921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9260, + "pitch": null, + "reason": null, + "target": { + "x": 1.8583984375, + "y": 1.2344970703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 9260, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 38.75, + "y": 57.25, + "z": 4 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 113508353, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9260, + "sequence": 784, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 307689, + "y": 107809, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9260, + "otherUnit": null, + "sequence": 1078, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9262, + "pitch": null, + "reason": null, + "target": { + "x": 1.92236328125, + "y": 1.2176513671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9263, + "pitch": null, + "reason": null, + "target": { + "x": 1.9639892578125, + "y": 1.203857421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9266, + "pitch": null, + "reason": null, + "target": { + "x": 2.0020751953125, + "y": 1.18896484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9269, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9270, + "target": { + "x": 37.267578125, + "y": 13.151611328125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9270, + "sequence": 1079, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9271, + "pitch": null, + "reason": null, + "target": { + "x": 1.779541015625, + "y": 2.2489013671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9273, + "target": { + "x": 23.62353515625, + "y": 35.3929443359375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9273, + "sequence": 785, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 4, + "unitLink": 156 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9274, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9275, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9277, + "pitch": null, + "reason": null, + "target": { + "x": 1.7403564453125, + "y": 3.18212890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9277, + "pitch": null, + "reason": null, + "target": { + "x": 1.779541015625, + "y": 2.154052734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9278, + "pitch": null, + "reason": null, + "target": { + "x": 1.779541015625, + "y": 2.0086669921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 120586242 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9278, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9278, + "pitch": null, + "reason": null, + "target": { + "x": 1.7403564453125, + "y": 3.18212890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9279, + "pitch": null, + "reason": null, + "target": { + "x": 1.779541015625, + "y": 1.866455078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9279, + "otherUnit": null, + "sequence": 786, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 223 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 305152, + "y": 116736, + "z": 32718 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9279, + "otherUnit": null, + "sequence": 1080, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 120586242 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9281, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9282, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9284, + "pitch": null, + "reason": null, + "target": { + "x": 1.779541015625, + "y": 1.81591796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9285, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9285, + "pitch": null, + "reason": null, + "target": { + "x": 1.779541015625, + "y": 1.607421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 267118, + "y": 157687, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9286, + "otherUnit": null, + "sequence": 1081, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9288, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 217671, + "y": 202035, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9289, + "otherUnit": null, + "sequence": 787, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9289, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9290, + "pitch": null, + "reason": null, + "target": { + "x": 2.036865234375, + "y": 1.1546630859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9290, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9292, + "pitch": null, + "reason": null, + "target": { + "x": 2.0687255859375, + "y": 1.1307373046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9293, + "pitch": null, + "reason": null, + "target": { + "x": 2.1185302734375, + "y": 1.200927734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9293, + "pitch": null, + "reason": null, + "target": { + "x": 2.1380615234375, + "y": 1.173828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9293, + "pitch": null, + "reason": null, + "target": { + "x": 2.129638671875, + "y": 1.097412109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9293, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9293, + "pitch": null, + "reason": null, + "target": { + "x": 1.833251953125, + "y": 1.5283203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9295, + "pitch": null, + "reason": null, + "target": { + "x": 2.2108154296875, + "y": 1.0755615234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9295, + "pitch": null, + "reason": null, + "target": { + "x": 2.1658935546875, + "y": 1.078857421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9295, + "pitch": null, + "reason": null, + "target": { + "x": 1.9849853515625, + "y": 1.376708984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9296, + "pitch": null, + "reason": null, + "target": { + "x": 2.20458984375, + "y": 1.055419921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9296, + "pitch": null, + "reason": null, + "target": { + "x": 2.2567138671875, + "y": 1.10498046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9297, + "pitch": null, + "reason": null, + "target": { + "x": 2.248291015625, + "y": 1.0208740234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9297, + "pitch": null, + "reason": null, + "target": { + "x": 2.348388671875, + "y": 0.9564208984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9299, + "pitch": null, + "reason": null, + "target": { + "x": 2.2843017578125, + "y": 0.9705810546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9303, + "pitch": null, + "reason": null, + "target": { + "x": 2.2325439453125, + "y": 1.039794921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9303, + "pitch": null, + "reason": null, + "target": { + "x": 2.348388671875, + "y": 0.81103515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 121896961 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9305, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9307, + "pitch": null, + "reason": null, + "target": { + "x": 2.3199462890625, + "y": 0.855224609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 114294785 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9307, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9308, + "pitch": null, + "reason": null, + "target": { + "x": 1.6612548828125, + "y": 3.18212890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9308, + "pitch": null, + "reason": null, + "target": { + "x": 2.168212890625, + "y": 1.0069580078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9310, + "pitch": null, + "reason": null, + "target": { + "x": 2.0450439453125, + "y": 1.1302490234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9311, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9311, + "pitch": null, + "reason": null, + "target": { + "x": 1.94384765625, + "y": 1.4208984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 6, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9311, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9312, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9312, + "pitch": null, + "reason": null, + "target": { + "x": 1.94384765625, + "y": 1.5694580078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9314, + "pitch": null, + "reason": null, + "target": { + "x": 1.94384765625, + "y": 1.7210693359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9314, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9315, + "pitch": null, + "reason": null, + "target": { + "x": 2.19384765625, + "y": 1.057861328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9315, + "target": { + "x": 24.589111328125, + "y": 32.7564697265625, + "z": 4.0477294921875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9315, + "sequence": 788, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": 5384, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9316, + "pitch": null, + "reason": null, + "target": { + "x": 1.70751953125, + "y": 3.18212890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9318, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9318, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.9298095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9319, + "pitch": null, + "reason": null, + "target": { + "x": 1.94384765625, + "y": 1.8380126953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9319, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.8834228515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9321, + "pitch": null, + "reason": null, + "target": { + "x": 2.162841796875, + "y": 1.1021728515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9321, + "pitch": null, + "reason": null, + "target": { + "x": 1.94384765625, + "y": 1.9833984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 115605507 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9321, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9321, + "pitch": null, + "reason": null, + "target": { + "x": 1.676025390625, + "y": 3.18212890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9322, + "otherUnit": null, + "sequence": 789, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9322, + "pitch": null, + "reason": null, + "target": { + "x": 1.94384765625, + "y": 2.2266845703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9323, + "pitch": null, + "reason": null, + "target": { + "x": 2.1409912109375, + "y": 1.128662109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 115605507 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9323, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9326, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 208523, + "y": 324054, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9327, + "otherUnit": null, + "sequence": 790, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9329, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 212992, + "y": 102400, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9329, + "otherUnit": null, + "sequence": 1082, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9331, + "pitch": null, + "reason": null, + "target": { + "x": 2.1158447265625, + "y": 1.1517333984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9331, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9331, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9336, + "pitch": null, + "reason": null, + "target": { + "x": 1.744140625, + "y": 1.9619140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9336, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.9287109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9337, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.9761962890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 120848385, + 121110529 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9338, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 103022593 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9342, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9344, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.0145263671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9344, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9345, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.1131591796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9346, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.1676025390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 270868, + "y": 203794, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9349, + "otherUnit": null, + "sequence": 1083, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 329728, + "y": 440320, + "z": 32706 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9357, + "otherUnit": null, + "sequence": 791, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 53215235 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9357, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9359, + "pitch": null, + "reason": null, + "target": { + "x": 1.6612548828125, + "y": 3.2589111328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9359, + "pitch": null, + "reason": null, + "target": { + "x": 1.73974609375, + "y": 2.012939453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9360, + "pitch": null, + "reason": null, + "target": { + "x": 1.7283935546875, + "y": 2.05419921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9360, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 76808194, + 119013379, + 119275521, + 120061953 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9360, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9362, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9363, + "pitch": null, + "reason": null, + "target": { + "x": 1.720947265625, + "y": 2.1058349609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109838337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9363, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9364, + "pitch": null, + "reason": null, + "target": { + "x": 1.7164306640625, + "y": 2.14794921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9364, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9364, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9364, + "target": { + "x": 30.45263671875, + "y": 23.895751953125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9364, + "sequence": 1084, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 87293955 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9367, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9368, + "pitch": null, + "reason": null, + "target": { + "x": 1.6611328125, + "y": 3.21484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 30, + "Data": "0x7fdffc3f" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9370, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 122421249 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9371, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 123 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9371, + "otherUnit": null, + "sequence": 1085, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 240694, + "y": 208597, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9371, + "otherUnit": null, + "sequence": 1086, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9372, + "pitch": null, + "reason": null, + "target": { + "x": 2.095458984375, + "y": 1.1795654296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9372, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9372, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.208251953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9372, + "pitch": null, + "reason": null, + "target": { + "x": 1.6611328125, + "y": 3.2525634765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9374, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.269775390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9375, + "pitch": null, + "reason": null, + "target": { + "x": 2.0936279296875, + "y": 1.2188720703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9375, + "pitch": null, + "reason": null, + "target": { + "x": 2.093017578125, + "y": 1.2620849609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9375, + "target": { + "x": 28.885009765625, + "y": 28.352783203125, + "z": 4.0477294921875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9375, + "sequence": 1087, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9375, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.361328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9377, + "pitch": null, + "reason": null, + "target": { + "x": 1.589111328125, + "y": 2.4090576171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9377, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.4146728515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9378, + "pitch": null, + "reason": null, + "target": { + "x": 2.09326171875, + "y": 1.325439453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9378, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9378, + "target": { + "x": 28.8743896484375, + "y": 30.30517578125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9378, + "sequence": 1088, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9378, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.516845703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9379, + "pitch": null, + "reason": null, + "target": { + "x": 2.0926513671875, + "y": 1.36767578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9379, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9379, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.56787109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 183614, + "y": 304397, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9381, + "otherUnit": null, + "sequence": 792, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9381, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.626953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9381, + "target": { + "x": 28.5389404296875, + "y": 32.2821044921875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9381, + "sequence": 1089, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9382, + "pitch": null, + "reason": null, + "target": { + "x": 2.0849609375, + "y": 1.4151611328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9382, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.72216796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9383, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 114819075 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9386, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 115343362, + 122683393 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9386, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 215143, + "y": 272595, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9388, + "otherUnit": null, + "sequence": 1090, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9389, + "pitch": null, + "reason": null, + "target": { + "x": 1.589111328125, + "y": 2.361572265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 71565321, + 122945537 + ], + "removeMask": { + "Mask": { + "Count": 8, + "Data": "0x80" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9389, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9390, + "pitch": null, + "reason": null, + "target": { + "x": 1.589111328125, + "y": 2.213134765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9390, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9392, + "pitch": null, + "reason": null, + "target": { + "x": 1.589111328125, + "y": 2.0645751953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 112459780, + 123207681 + ], + "removeMask": { + "OneIndices": [ + 9 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9392, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9393, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9393, + "pitch": null, + "reason": null, + "target": { + "x": 1.589111328125, + "y": 1.9287109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9393, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9396, + "pitch": null, + "reason": null, + "target": { + "x": 2.405517578125, + "y": 3.381591796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9396, + "target": { + "x": 24.5838623046875, + "y": 28.78759765625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9396, + "sequence": 793, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9397, + "pitch": null, + "reason": null, + "target": { + "x": 2.3663330078125, + "y": 3.381591796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9397, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9397, + "pitch": null, + "reason": null, + "target": { + "x": 2.405517578125, + "y": 3.381591796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9398, + "pitch": null, + "reason": null, + "target": { + "x": 1.589111328125, + "y": 1.80859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9400, + "pitch": null, + "reason": null, + "target": { + "x": 1.737548828125, + "y": 1.6600341796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 114819075 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9400, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9401, + "pitch": null, + "reason": null, + "target": { + "x": 1.722412109375, + "y": 2.18310546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9401, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 1.59375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9401, + "otherUnit": null, + "sequence": 794, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9401, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9403, + "pitch": null, + "reason": null, + "target": { + "x": 1.73974609375, + "y": 2.2161865234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 114819075 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9403, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9403, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9404, + "pitch": null, + "reason": null, + "target": { + "x": 1.7772216796875, + "y": 2.297119140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9405, + "pitch": null, + "reason": null, + "target": { + "x": 1.79296875, + "y": 2.3660888671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9407, + "pitch": null, + "reason": null, + "target": { + "x": 1.7952880859375, + "y": 2.4208984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9407, + "pitch": null, + "reason": null, + "target": { + "x": 1.7967529296875, + "y": 2.4598388671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9407, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 1, + "unitLink": 25 + } + ], + "addUnitTags": [ + 90701827 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9407, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9409, + "pitch": null, + "reason": null, + "target": { + "x": 1.7974853515625, + "y": 2.4981689453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 243185, + "y": 204845, + "z": 32800 + }, + "snapshotUnitLink": 70, + "snapshotUpkeepPlayerId": 2, + "tag": 120061953, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9409, + "otherUnit": null, + "sequence": 795, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9409, + "pitch": null, + "reason": null, + "target": { + "x": 2.3736572265625, + "y": 3.381591796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9411, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.83056640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9412, + "pitch": null, + "reason": null, + "target": { + "x": 2.3663330078125, + "y": 3.32958984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9412, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9414, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9414, + "pitch": null, + "reason": null, + "target": { + "x": 0.7454833984375, + "y": 0.83056640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9414, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9415, + "pitch": null, + "reason": null, + "target": { + "x": 1.77880859375, + "y": 2.4246826171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9416, + "pitch": null, + "reason": null, + "target": { + "x": 1.7802734375, + "y": 2.3624267578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9416, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 1.6884765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9416, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9418, + "pitch": null, + "reason": null, + "target": { + "x": 1.782470703125, + "y": 2.327880859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9418, + "pitch": null, + "reason": null, + "target": { + "x": 1.792236328125, + "y": 2.2611083984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9418, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 1.811767578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9418, + "target": { + "x": 29.01416015625, + "y": 34.781982421875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9418, + "sequence": 796, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9418, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9419, + "pitch": null, + "reason": null, + "target": { + "x": 2.0677490234375, + "y": 1.4619140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9420, + "pitch": null, + "reason": null, + "target": { + "x": 1.8087158203125, + "y": 2.1441650390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 59 + } + ], + "addUnitTags": [ + 72089602 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9420, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9422, + "pitch": null, + "reason": null, + "target": { + "x": 1.8206787109375, + "y": 2.0811767578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9422, + "pitch": null, + "reason": null, + "target": { + "x": 2.056396484375, + "y": 1.49365234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9423, + "pitch": null, + "reason": null, + "target": { + "x": 1.8326416015625, + "y": 2.0023193359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9423, + "pitch": null, + "reason": null, + "target": { + "x": 2.3660888671875, + "y": 3.350341796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9424, + "pitch": null, + "reason": null, + "target": { + "x": 1.8431396484375, + "y": 1.940185546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9424, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9424, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9426, + "pitch": null, + "reason": null, + "target": { + "x": 2.0440673828125, + "y": 1.5281982421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9426, + "target": { + "x": 29.057373046875, + "y": 32.603759765625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9426, + "sequence": 797, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9429, + "pitch": null, + "reason": null, + "target": { + "x": 1.84765625, + "y": 1.890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9429, + "pitch": null, + "reason": null, + "target": { + "x": 2.0281982421875, + "y": 1.572265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9430, + "pitch": null, + "reason": null, + "target": { + "x": 1.85595703125, + "y": 1.8245849609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9430, + "pitch": null, + "reason": null, + "target": { + "x": 2.01416015625, + "y": 1.6092529296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9430, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9430, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 1.919189453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 109051906 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9430, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9431, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 2.045654296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9433, + "pitch": null, + "reason": null, + "target": { + "x": 1.85888671875, + "y": 1.77734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9433, + "pitch": null, + "reason": null, + "target": { + "x": 1.9991455078125, + "y": 1.65087890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9434, + "pitch": null, + "reason": null, + "target": { + "x": 1.989501953125, + "y": 1.682373046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 123994113 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9434, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 123994113 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9434, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 112721921 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9434, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9435, + "target": { + "x": 29.4339599609375, + "y": 35.5550537109375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9435, + "sequence": 798, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9437, + "pitch": null, + "reason": null, + "target": { + "x": 1.9693603515625, + "y": 1.750244140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9437, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9438, + "pitch": null, + "reason": null, + "target": { + "x": 1.9508056640625, + "y": 1.8050537109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9438, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9441, + "pitch": null, + "reason": null, + "target": { + "x": 1.93310546875, + "y": 1.839599609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9441, + "target": { + "x": 29.4305419921875, + "y": 35.3543701171875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9441, + "sequence": 799, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9441, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x7d" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9444, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9446, + "pitch": null, + "reason": null, + "target": { + "x": 1.916015625, + "y": 1.8780517578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9446, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 142 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9446, + "otherUnit": null, + "sequence": 1091, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 65 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9448, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 65 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9448, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 104781, + "y": 95758, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9448, + "otherUnit": null, + "sequence": 1092, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9449, + "pitch": null, + "reason": null, + "target": { + "x": 1.8507080078125, + "y": 1.818603515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9449, + "pitch": null, + "reason": null, + "target": { + "x": 1.9156494140625, + "y": 1.915771484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9450, + "target": { + "x": 28.20751953125, + "y": 34.7451171875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9450, + "sequence": 800, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9453, + "pitch": null, + "reason": null, + "target": { + "x": 1.838623046875, + "y": 1.8621826171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9453, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 141 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 104448, + "y": 96256, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9453, + "otherUnit": null, + "sequence": 1093, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9455, + "target": { + "x": 27.785888671875, + "y": 34.68115234375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9455, + "sequence": 801, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9456, + "pitch": null, + "reason": null, + "target": { + "x": 1.827392578125, + "y": 1.8951416015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9457, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9459, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 1.9412841796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 78905348 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9459, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9460, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9460, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 1.8465576171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9461, + "pitch": null, + "reason": null, + "target": { + "x": 1.8214111328125, + "y": 1.9259033203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 218286, + "y": 248154, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9466, + "otherUnit": null, + "sequence": 802, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9466, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9467, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9468, + "target": { + "x": 26.599365234375, + "y": 30.5009765625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9468, + "sequence": 803, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9470, + "pitch": null, + "reason": null, + "target": { + "x": 1.91455078125, + "y": 1.9554443359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9472, + "pitch": null, + "reason": null, + "target": { + "x": 1.910888671875, + "y": 1.990234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9474, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9475, + "pitch": null, + "reason": null, + "target": { + "x": 1.9010009765625, + "y": 2.0262451171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9476, + "target": { + "x": 27.90771484375, + "y": 30.008544921875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9476, + "sequence": 804, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9478, + "pitch": null, + "reason": null, + "target": { + "x": 1.8841552734375, + "y": 2.059814453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9478, + "otherUnit": null, + "sequence": 1095, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9479, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9481, + "target": { + "x": 28.20703125, + "y": 29.711181640625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9481, + "sequence": 805, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 53215235, + 76808194, + 119275521, + 120061953 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9482, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9485, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9487, + "target": { + "x": 28.803466796875, + "y": 29.4755859375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9487, + "sequence": 806, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 95139, + "y": 114717, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9489, + "otherUnit": null, + "sequence": 1096, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9490, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9490, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9491, + "pitch": null, + "reason": null, + "target": { + "x": 1.824462890625, + "y": 1.962646484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9491, + "target": { + "x": 28.803466796875, + "y": 29.466064453125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9491, + "sequence": 807, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9496, + "pitch": null, + "reason": null, + "target": { + "x": 1.8701171875, + "y": 2.03076171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 78905348 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9496, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9498, + "userid": { + "userId": 1 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 90112, + "y": 122880, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9498, + "otherUnit": null, + "sequence": 1097, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9500, + "pitch": null, + "reason": null, + "target": { + "x": 1.8623046875, + "y": 1.9962158203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9501, + "mask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9502, + "pitch": null, + "reason": null, + "target": { + "x": 1.8614501953125, + "y": 1.9466552734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 53215237, + 126877698 + ], + "removeMask": { + "OneIndices": [ + 10 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9502, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 53215237, + 126877698 + ], + "removeMask": { + "OneIndices": [ + 10 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9502, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9504, + "pitch": null, + "reason": null, + "target": { + "x": 1.814697265625, + "y": 1.99267578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9504, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9505, + "pitch": null, + "reason": null, + "target": { + "x": 1.862060546875, + "y": 1.9091796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 88080385 + ], + "removeMask": { + "Mask": { + "Count": 21, + "Data": "0x0f7f1d" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9508, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9508, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.2252197265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9508, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.2576904296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9509, + "pitch": null, + "reason": null, + "target": { + "x": 1.86767578125, + "y": 1.870849609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 116916226, + 125042692 + ], + "removeMask": { + "OneIndices": [ + 12 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9509, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 125566979, + 127664130, + 127926275, + 128188419 + ], + "removeMask": { + "Mask": { + "Count": 15, + "Data": "0x0c00" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9509, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 247500, + "y": 224095, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9509, + "otherUnit": null, + "sequence": 1098, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9509, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.31103515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 117440514, + 128450562 + ], + "removeMask": { + "OneIndices": [ + 13 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9511, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9511, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.367919921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9512, + "pitch": null, + "reason": null, + "target": { + "x": 1.87158203125, + "y": 1.83544921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9512, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 1.7264404296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9512, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.464111328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9513, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 1.69482421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9513, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.516357421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9515, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.5755615234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9515, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9516, + "pitch": null, + "reason": null, + "target": { + "x": 1.8748779296875, + "y": 1.797607421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9516, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9516, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.674072265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9517, + "otherUnit": null, + "sequence": 1099, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9517, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.7227783203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9519, + "pitch": null, + "reason": null, + "target": { + "x": 1.8758544921875, + "y": 1.7601318359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9520, + "sequence": 1100, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9520, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9522, + "pitch": null, + "reason": null, + "target": { + "x": 1.872802734375, + "y": 1.7193603515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9523, + "pitch": null, + "reason": null, + "target": { + "x": 1.8514404296875, + "y": 2.0106201171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9523, + "pitch": null, + "reason": null, + "target": { + "x": 1.8697509765625, + "y": 1.6763916015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9526, + "pitch": null, + "reason": null, + "target": { + "x": 1.8697509765625, + "y": 1.6343994140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9527, + "pitch": null, + "reason": null, + "target": { + "x": 1.8697509765625, + "y": 1.5987548828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9527, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9528, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 119275522, + 127401988 + ], + "removeMask": { + "OneIndices": [ + 15 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9528, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9530, + "pitch": null, + "reason": null, + "target": { + "x": 1.8695068359375, + "y": 1.564208984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9531, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9533, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9534, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 1.758056640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9535, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 1.916015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9535, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9537, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 2.0614013671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9538, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 230320, + "y": 319866, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9538, + "otherUnit": null, + "sequence": 808, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9538, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 2.13720703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 249903, + "y": 235512, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9538, + "otherUnit": null, + "sequence": 1102, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9541, + "target": { + "x": 28.20361328125, + "y": 38.6341552734375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9541, + "sequence": 809, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9541, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9541, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9543, + "otherUnit": null, + "sequence": 1103, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9545, + "target": { + "x": 26.52001953125, + "y": 34.39599609375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9545, + "sequence": 810, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9545, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.6856689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9546, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9546, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.6358642578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9549, + "pitch": null, + "reason": null, + "target": { + "x": 1.8863525390625, + "y": 1.5936279296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9549, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 1.6859130859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 253598, + "y": 232554, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9550, + "otherUnit": null, + "sequence": 1104, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9553, + "pitch": null, + "reason": null, + "target": { + "x": 1.896240234375, + "y": 1.6343994140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9553, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9554, + "target": { + "x": 30.9390869140625, + "y": 28.5181884765625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9554, + "sequence": 1105, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9556, + "pitch": null, + "reason": null, + "target": { + "x": 1.899169921875, + "y": 1.6710205078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 14 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9557, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9557, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9559, + "pitch": null, + "reason": null, + "target": { + "x": 1.899169921875, + "y": 1.713623046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9559, + "otherUnit": null, + "sequence": 1106, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9561, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.757080078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9561, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9561, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 1.8502197265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9561, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9563, + "pitch": null, + "reason": null, + "target": { + "x": 1.8968505859375, + "y": 1.79638671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9563, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 1.979736328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9563, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9564, + "pitch": null, + "reason": null, + "target": { + "x": 1.896240234375, + "y": 1.8360595703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9564, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9564, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.2325439453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9565, + "target": { + "x": 31.6727294921875, + "y": 44.65283203125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9565, + "sequence": 811, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9565, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.4095458984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9565, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.6822509765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9567, + "pitch": null, + "reason": null, + "target": { + "x": 1.895263671875, + "y": 1.8756103515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9567, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.5390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9567, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.740234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 245584, + "y": 279149, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9567, + "otherUnit": null, + "sequence": 1107, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9568, + "mask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9568, + "target": { + "x": 32.0069580078125, + "y": 47.5865478515625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9568, + "sequence": 812, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9568, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.6434326171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9568, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 1.7750244140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9569, + "pitch": null, + "reason": null, + "target": { + "x": 1.869384765625, + "y": 1.984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9569, + "pitch": null, + "reason": null, + "target": { + "x": 1.8944091796875, + "y": 1.91845703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9569, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9569, + "target": { + "x": 30.0946044921875, + "y": 33.746826171875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9569, + "sequence": 1108, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9571, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9571, + "target": { + "x": 32.2174072265625, + "y": 47.1890869140625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9571, + "sequence": 813, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9574, + "pitch": null, + "reason": null, + "target": { + "x": 1.8929443359375, + "y": 1.96044921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9574, + "mask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9574, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 9575, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 32.39794921875, + "y": 46.689208984375, + "z": 4 + }, + "snapshotUnitLink": 127, + "snapshotUpkeepPlayerId": 1, + "tag": 127401988, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9575, + "sequence": 814, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9576, + "otherUnit": null, + "sequence": 1109, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9578, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.5706787109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9579, + "pitch": null, + "reason": null, + "target": { + "x": 1.8671875, + "y": 1.8980712890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9579, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9579, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.4158935546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9580, + "pitch": null, + "reason": null, + "target": { + "x": 1.858154296875, + "y": 1.81640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9580, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.2894287109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9580, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9582, + "pitch": null, + "reason": null, + "target": { + "x": 1.8551025390625, + "y": 1.7789306640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9582, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.1314697265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9583, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 1.869140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 8, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 115867650, + 124256257, + 124518402, + 124780545, + 125304833, + 126615553, + 127139841, + 128974850 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9583, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9585, + "pitch": null, + "reason": null, + "target": { + "x": 1.8536376953125, + "y": 1.7158203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9585, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 1.764892578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 227907, + "y": 270202, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9585, + "otherUnit": null, + "sequence": 1111, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9586, + "pitch": null, + "reason": null, + "target": { + "x": 1.8558349609375, + "y": 1.684326171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9586, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 4, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9587, + "otherUnit": null, + "sequence": 815, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9587, + "target": { + "x": 27.8419189453125, + "y": 32.76123046875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9587, + "sequence": 1112, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 115867650 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9589, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9590, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 1.60693359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9590, + "sequence": 816, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 124256257 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9591, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9591, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9591, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 62914564, + 110624769 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9593, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9594, + "sequence": 817, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9594, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 124518402 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9595, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9597, + "pitch": null, + "reason": null, + "target": { + "x": 1.8768310546875, + "y": 1.74658203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9597, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9598, + "pitch": null, + "reason": null, + "target": { + "x": 1.8798828125, + "y": 1.7811279296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9600, + "pitch": null, + "reason": null, + "target": { + "x": 1.88134765625, + "y": 1.8133544921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9600, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9601, + "pitch": null, + "reason": null, + "target": { + "x": 1.89111328125, + "y": 1.8673095703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9601, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9602, + "sequence": 818, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9602, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9604, + "pitch": null, + "reason": null, + "target": { + "x": 1.8929443359375, + "y": 1.918212890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 124780545 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9604, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9605, + "pitch": null, + "reason": null, + "target": { + "x": 2.3223876953125, + "y": 3.2784423828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9605, + "pitch": null, + "reason": null, + "target": { + "x": 2.283203125, + "y": 3.2391357421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9605, + "pitch": null, + "reason": null, + "target": { + "x": 1.8946533203125, + "y": 1.878662109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 278528, + "y": 108544, + "z": 32768 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 6029313, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9605, + "otherUnit": null, + "sequence": 1113, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9606, + "pitch": null, + "reason": null, + "target": { + "x": 2.2510986328125, + "y": 3.2071533203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9606, + "otherUnit": null, + "sequence": 1114, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9608, + "pitch": null, + "reason": null, + "target": { + "x": 2.2095947265625, + "y": 3.16552734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9608, + "pitch": null, + "reason": null, + "target": { + "x": 1.8958740234375, + "y": 1.8402099609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9609, + "pitch": null, + "reason": null, + "target": { + "x": 2.13916015625, + "y": 3.09521484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9611, + "pitch": null, + "reason": null, + "target": { + "x": 2.107177734375, + "y": 3.063232421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 8, + "Data": "0xf0" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9611, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9611, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9611, + "pitch": null, + "reason": null, + "target": { + "x": 2.3515625, + "y": 3.3138427734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 87293955, + 109576193, + 109838337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9612, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9613, + "pitch": null, + "reason": null, + "target": { + "x": 2.0423583984375, + "y": 2.98876953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9613, + "pitch": null, + "reason": null, + "target": { + "x": 2.318359375, + "y": 3.279296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9615, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 1.723876953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9615, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9616, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9616, + "pitch": null, + "reason": null, + "target": { + "x": 2.288818359375, + "y": 3.248779296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9617, + "pitch": null, + "reason": null, + "target": { + "x": 1.9024658203125, + "y": 1.9041748046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9617, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 1.8060302734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9617, + "pitch": null, + "reason": null, + "target": { + "x": 0.796875, + "y": 0.8096923828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9617, + "pitch": null, + "reason": null, + "target": { + "x": 2.25, + "y": 3.208251953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9620, + "pitch": null, + "reason": null, + "target": { + "x": 1.908447265625, + "y": 1.9393310546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9620, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9620, + "pitch": null, + "reason": null, + "target": { + "x": 2.21044921875, + "y": 3.1666259765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9620, + "pitch": null, + "reason": null, + "target": { + "x": 2.1878662109375, + "y": 3.142822265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9621, + "mask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9621, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9623, + "pitch": null, + "reason": null, + "target": { + "x": 2.14697265625, + "y": 3.0994873046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9624, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9624, + "pitch": null, + "reason": null, + "target": { + "x": 2.1004638671875, + "y": 3.0504150390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9626, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 62914564, + 110624769 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9627, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9627, + "pitch": null, + "reason": null, + "target": { + "x": 2.05712890625, + "y": 3.0045166015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9628, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9628, + "pitch": null, + "reason": null, + "target": { + "x": 0.796875, + "y": 0.8526611328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9630, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9630, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9630, + "pitch": null, + "reason": null, + "target": { + "x": 0.796875, + "y": 0.902587890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9634, + "pitch": null, + "reason": null, + "target": { + "x": 2.0423583984375, + "y": 2.956787109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9634, + "mask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x3f" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9634, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9635, + "pitch": null, + "reason": null, + "target": { + "x": 2.0423583984375, + "y": 2.9232177734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 140 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9635, + "otherUnit": null, + "sequence": 1115, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9636, + "pitch": null, + "reason": null, + "target": { + "x": 2.0423583984375, + "y": 2.887939453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 68 + } + ], + "addUnitTags": [ + 112721921 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9636, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 3, + "unitLink": 68 + } + ], + "addUnitTags": [ + 112721921 + ], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x40" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9636, + "userid": { + "userId": 5 + } + }, + { + "distance": 10889, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9639, + "pitch": null, + "reason": null, + "target": { + "x": 1.90283203125, + "y": 1.8756103515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9641, + "pitch": null, + "reason": null, + "target": { + "x": 2.042236328125, + "y": 2.974365234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 246598, + "y": 246549, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9642, + "otherUnit": null, + "sequence": 819, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": 9685, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9643, + "pitch": null, + "reason": null, + "target": { + "x": 1.9034423828125, + "y": 1.908935546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 148 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 104448, + "y": 133120, + "z": 49101 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9643, + "otherUnit": null, + "sequence": 1116, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9645, + "pitch": null, + "reason": null, + "target": { + "x": 2.042236328125, + "y": 2.941650390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9649, + "pitch": null, + "reason": null, + "target": { + "x": 2.042236328125, + "y": 2.9019775390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9650, + "pitch": null, + "reason": null, + "target": { + "x": 1.9010009765625, + "y": 1.9412841796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 80478209 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9650, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9652, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": 4723, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9654, + "pitch": null, + "reason": null, + "target": { + "x": 1.8739013671875, + "y": 1.9498291015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 274432, + "y": 112640, + "z": 32768 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 7077889, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9656, + "otherUnit": null, + "sequence": 1117, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 340937, + "y": 464473, + "z": 32843 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9657, + "otherUnit": null, + "sequence": 820, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9660, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9661, + "sequence": 821, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9661, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9662, + "mask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9664, + "pitch": null, + "reason": null, + "target": { + "x": 2.0423583984375, + "y": 2.8223876953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9664, + "target": { + "x": 41.6182861328125, + "y": 56.380859375, + "z": 4.0074462890625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9664, + "sequence": 822, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9664, + "pitch": null, + "reason": null, + "target": { + "x": 1.843994140625, + "y": 1.7655029296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9665, + "pitch": null, + "reason": null, + "target": { + "x": 2.0423583984375, + "y": 2.757568359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9665, + "pitch": null, + "reason": null, + "target": { + "x": 1.843994140625, + "y": 1.8072509765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9667, + "pitch": null, + "reason": null, + "target": { + "x": 1.843994140625, + "y": 1.8582763671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9668, + "pitch": null, + "reason": null, + "target": { + "x": 1.843994140625, + "y": 1.962646484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9669, + "pitch": null, + "reason": null, + "target": { + "x": 1.843994140625, + "y": 2.014892578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 64749569 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9671, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9671, + "pitch": null, + "reason": null, + "target": { + "x": 2.042236328125, + "y": 2.86279296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 13, + "Data": "0x0804" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9673, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9675, + "pitch": null, + "reason": null, + "target": { + "x": 2.042236328125, + "y": 2.8193359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9678, + "pitch": null, + "reason": null, + "target": { + "x": 2.042236328125, + "y": 2.7789306640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9680, + "pitch": null, + "reason": null, + "target": { + "x": 2.0423583984375, + "y": 2.795166015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9680, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9680, + "target": { + "x": 25.8768310546875, + "y": 36.11181640625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9680, + "sequence": 1119, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9682, + "pitch": null, + "reason": null, + "target": { + "x": 2.0423583984375, + "y": 2.83203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9683, + "pitch": null, + "reason": null, + "target": { + "x": 2.0423583984375, + "y": 2.8984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9683, + "target": { + "x": 25.0059814453125, + "y": 35.7568359375, + "z": 4.0477294921875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9683, + "sequence": 1120, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9684, + "pitch": null, + "reason": null, + "target": { + "x": 2.0687255859375, + "y": 2.934326171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 65 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9684, + "otherUnit": null, + "sequence": 823, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9686, + "pitch": null, + "reason": null, + "target": { + "x": 2.107177734375, + "y": 2.9727783203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 53215237 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9686, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 53215237 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9686, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9687, + "pitch": null, + "reason": null, + "target": { + "x": 2.156005859375, + "y": 3.0472412109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 202357, + "y": 295069, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9687, + "otherUnit": null, + "sequence": 1121, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9688, + "pitch": null, + "reason": null, + "target": { + "x": 1.8797607421875, + "y": 1.96435546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9688, + "sequence": 824, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9688, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 71565321 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9690, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 71565321 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9690, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 202558, + "y": 293650, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9690, + "otherUnit": null, + "sequence": 1122, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9691, + "sequence": 825, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9691, + "pitch": null, + "reason": null, + "target": { + "x": 2.0537109375, + "y": 2.81787109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9693, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 1.8629150390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 83099649 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9693, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 83099649 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9693, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9693, + "pitch": null, + "reason": null, + "target": { + "x": 2.067138671875, + "y": 2.8521728515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9694, + "pitch": null, + "reason": null, + "target": { + "x": 1.8443603515625, + "y": 1.970458984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9694, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.0272216796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9694, + "pitch": null, + "reason": null, + "target": { + "x": 2.0848388671875, + "y": 2.89306640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9695, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 201818, + "y": 294878, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9695, + "otherUnit": null, + "sequence": 1123, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 231093, + "y": 296230, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9697, + "otherUnit": null, + "sequence": 826, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9697, + "pitch": null, + "reason": null, + "target": { + "x": 2.1044921875, + "y": 2.9365234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9698, + "mask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9698, + "pitch": null, + "reason": null, + "target": { + "x": 2.126708984375, + "y": 2.984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9699, + "pitch": null, + "reason": null, + "target": { + "x": 1.81103515625, + "y": 1.979736328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9699, + "target": { + "x": 28.2513427734375, + "y": 35.6368408203125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9699, + "sequence": 827, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9699, + "pitch": null, + "reason": null, + "target": { + "x": 1.843994140625, + "y": 2.0914306640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9701, + "pitch": null, + "reason": null, + "target": { + "x": 1.843994140625, + "y": 2.1435546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9701, + "pitch": null, + "reason": null, + "target": { + "x": 2.1470947265625, + "y": 3.0283203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9702, + "target": { + "x": 28.34619140625, + "y": 35.05029296875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9702, + "sequence": 828, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9702, + "pitch": null, + "reason": null, + "target": { + "x": 1.843994140625, + "y": 2.23291015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9704, + "pitch": null, + "reason": null, + "target": { + "x": 1.843994140625, + "y": 2.28515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9704, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9705, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9705, + "pitch": null, + "reason": null, + "target": { + "x": 1.843994140625, + "y": 2.3941650390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9706, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.21044921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9706, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9706, + "pitch": null, + "reason": null, + "target": { + "x": 1.843994140625, + "y": 2.4451904296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9708, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.321044921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9708, + "target": { + "x": 37.210205078125, + "y": 42.790771484375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9708, + "sequence": 829, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9708, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9708, + "pitch": null, + "reason": null, + "target": { + "x": 1.843994140625, + "y": 2.4927978515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9709, + "pitch": null, + "reason": null, + "target": { + "x": 1.843994140625, + "y": 2.549560546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9710, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9710, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9712, + "mask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9713, + "pitch": null, + "reason": null, + "target": { + "x": 1.873046875, + "y": 1.9970703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9714, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.207275390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9714, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9716, + "pitch": null, + "reason": null, + "target": { + "x": 1.6817626953125, + "y": 2.025146484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9716, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.0556640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9717, + "pitch": null, + "reason": null, + "target": { + "x": 1.7462158203125, + "y": 1.9688720703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9717, + "pitch": null, + "reason": null, + "target": { + "x": 1.6817626953125, + "y": 2.025146484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9719, + "target": { + "x": 29.9176025390625, + "y": 32.2667236328125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9719, + "sequence": 830, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9720, + "pitch": null, + "reason": null, + "target": { + "x": 1.8575439453125, + "y": 2.0250244140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9721, + "target": { + "x": 29.6304931640625, + "y": 33.0531005859375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9721, + "sequence": 831, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9725, + "target": { + "x": 29.16357421875, + "y": 33.2830810546875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9725, + "sequence": 832, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9725, + "pitch": null, + "reason": null, + "target": { + "x": 1.7462158203125, + "y": 2.012939453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9727, + "pitch": null, + "reason": null, + "target": { + "x": 1.7462158203125, + "y": 2.0767822265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9728, + "target": { + "x": 28.9783935546875, + "y": 33.44775390625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9728, + "sequence": 833, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9728, + "pitch": null, + "reason": null, + "target": { + "x": 1.7462158203125, + "y": 2.17529296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9730, + "pitch": null, + "reason": null, + "target": { + "x": 1.8404541015625, + "y": 2.052001953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9738, + "pitch": null, + "reason": null, + "target": { + "x": 1.81884765625, + "y": 2.0826416015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9739, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.166259765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9740, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.3084716796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9740, + "target": { + "x": 30.090087890625, + "y": 43.462646484375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9740, + "sequence": 834, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9742, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.393798828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9743, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9743, + "target": { + "x": 29.3321533203125, + "y": 37.54345703125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9743, + "sequence": 1124, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9745, + "target": { + "x": 30.178466796875, + "y": 43.864501953125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9745, + "sequence": 835, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 123 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9746, + "otherUnit": null, + "sequence": 1125, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9747, + "mask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9747, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.4443359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": 6593, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9749, + "pitch": null, + "reason": null, + "target": { + "x": 1.8028564453125, + "y": 2.01123046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9749, + "pitch": null, + "reason": null, + "target": { + "x": 1.8011474609375, + "y": 2.1104736328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9749, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.5738525390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9750, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.656005859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9751, + "target": { + "x": 31.4615478515625, + "y": 47.881103515625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9751, + "sequence": 836, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": 10459, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9754, + "pitch": null, + "reason": null, + "target": { + "x": 1.807373046875, + "y": 2.1573486328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9756, + "pitch": null, + "reason": null, + "target": { + "x": 1.80029296875, + "y": 2.044921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9756, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.54541015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 237637, + "y": 323333, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9756, + "otherUnit": null, + "sequence": 1126, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": 10922, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9757, + "pitch": null, + "reason": null, + "target": { + "x": 1.8125, + "y": 2.1927490234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9757, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9758, + "pitch": null, + "reason": null, + "target": { + "x": 1.6817626953125, + "y": 2.093994140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9758, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.434814453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9760, + "target": { + "x": 28.998779296875, + "y": 40.0286865234375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9760, + "sequence": 1127, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 5, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 112721921 + ], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x40" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9760, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9762, + "pitch": null, + "reason": null, + "target": { + "x": 1.822998046875, + "y": 2.2254638671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9762, + "pitch": null, + "reason": null, + "target": { + "x": 1.7462158203125, + "y": 2.2066650390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9762, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9762, + "pitch": null, + "reason": null, + "target": { + "x": 1.7462158203125, + "y": 2.2518310546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [ + 1, + 12 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9764, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9764, + "pitch": null, + "reason": null, + "target": { + "x": 1.7462158203125, + "y": 2.3052978515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9765, + "pitch": null, + "reason": null, + "target": { + "x": 1.791259765625, + "y": 2.076416015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9765, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.286376953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9765, + "pitch": null, + "reason": null, + "target": { + "x": 1.7462158203125, + "y": 2.362060546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9766, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.159912109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9766, + "target": { + "x": 28.33642578125, + "y": 43.268310546875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9766, + "sequence": 1128, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9768, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.1282958984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9768, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9768, + "pitch": null, + "reason": null, + "target": { + "x": 1.6817626953125, + "y": 2.0611572265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9769, + "target": { + "x": 28.4068603515625, + "y": 44.670654296875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9769, + "sequence": 1129, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9769, + "pitch": null, + "reason": null, + "target": { + "x": 1.7462158203125, + "y": 2.4200439453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9771, + "pitch": null, + "reason": null, + "target": { + "x": 1.8204345703125, + "y": 2.1109619140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9771, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9771, + "pitch": null, + "reason": null, + "target": { + "x": 1.7462158203125, + "y": 2.4769287109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9772, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9772, + "pitch": null, + "reason": null, + "target": { + "x": 1.7462158203125, + "y": 2.5755615234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9773, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.1915283203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9773, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.3084716796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9773, + "pitch": null, + "reason": null, + "target": { + "x": 1.7462158203125, + "y": 2.62890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9773, + "pitch": null, + "reason": null, + "target": { + "x": 1.6817626953125, + "y": 2.093017578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9775, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.453857421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9776, + "pitch": null, + "reason": null, + "target": { + "x": 1.8414306640625, + "y": 2.1551513671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9776, + "mask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9776, + "target": { + "x": 33.5606689453125, + "y": 48.098388671875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9776, + "sequence": 837, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9776, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.6307373046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 131 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 263114, + "y": 382700, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9776, + "otherUnit": null, + "sequence": 1130, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9777, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9779, + "pitch": null, + "reason": null, + "target": { + "x": 1.8466796875, + "y": 2.1964111328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9779, + "target": { + "x": 33.5584716796875, + "y": 47.8966064453125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9779, + "sequence": 838, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9780, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9780, + "pitch": null, + "reason": null, + "target": { + "x": 1.7462158203125, + "y": 2.674072265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9781, + "pitch": null, + "reason": null, + "target": { + "x": 1.8504638671875, + "y": 2.25048828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9781, + "target": { + "x": 33.5841064453125, + "y": 47.870361328125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9781, + "sequence": 839, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9784, + "pitch": null, + "reason": null, + "target": { + "x": 1.8533935546875, + "y": 2.2872314453125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9784, + "mask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 9784, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 33.4417724609375, + "y": 47.6044921875, + "z": 4 + }, + "snapshotUnitLink": 127, + "snapshotUpkeepPlayerId": 1, + "tag": 125042692, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9784, + "sequence": 840, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9786, + "pitch": null, + "reason": null, + "target": { + "x": 1.857177734375, + "y": 2.323974609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9788, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.6907958984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 252423, + "y": 372816, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9788, + "otherUnit": null, + "sequence": 1131, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9790, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9790, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.8614501953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 9790, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 34.5, + "y": 51.25, + "z": 4 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25165825, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9790, + "sequence": 841, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9791, + "pitch": null, + "reason": null, + "target": { + "x": 1.8714599609375, + "y": 2.3697509765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9791, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9792, + "pitch": null, + "reason": null, + "target": { + "x": 1.8946533203125, + "y": 2.4267578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9792, + "mask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9792, + "target": { + "x": 34.260498046875, + "y": 51.0277099609375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9792, + "sequence": 842, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9792, + "otherUnit": null, + "sequence": 1132, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9794, + "pitch": null, + "reason": null, + "target": { + "x": 1.9051513671875, + "y": 2.46044921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9794, + "pitch": null, + "reason": null, + "target": { + "x": 1.8394775390625, + "y": 2.25537109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9794, + "pitch": null, + "reason": null, + "target": { + "x": 1.7972412109375, + "y": 2.7576904296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9795, + "pitch": null, + "reason": null, + "target": { + "x": 1.859619140625, + "y": 2.2845458984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9795, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9795, + "pitch": null, + "reason": null, + "target": { + "x": 1.888916015625, + "y": 2.8203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9797, + "pitch": null, + "reason": null, + "target": { + "x": 1.9163818359375, + "y": 2.50244140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9798, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.722412109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9798, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.5770263671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9798, + "sequence": 1133, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9799, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.4696044921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 8, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 115605508, + 118751235, + 125304833, + 126615553, + 127139841, + 128974850, + 129236996, + 129499137 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9799, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9799, + "sequence": 1134, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9801, + "pitch": null, + "reason": null, + "target": { + "x": 1.92236328125, + "y": 2.5482177734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9801, + "pitch": null, + "reason": null, + "target": { + "x": 1.8763427734375, + "y": 2.3214111328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9801, + "otherUnit": null, + "sequence": 843, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9801, + "sequence": 1135, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 115605508 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9802, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9802, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9803, + "pitch": null, + "reason": null, + "target": { + "x": 1.883056640625, + "y": 2.354736328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9805, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.286376953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 242928, + "y": 365080, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9805, + "otherUnit": null, + "sequence": 1136, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9806, + "pitch": null, + "reason": null, + "target": { + "x": 1.8880615234375, + "y": 2.392822265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9806, + "sequence": 844, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9806, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9807, + "sequence": 845, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 118751235 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9807, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9807, + "sequence": 846, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9807, + "target": { + "x": 29.6065673828125, + "y": 44.894775390625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9807, + "sequence": 1137, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9809, + "sequence": 847, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 125304833, + 126615553 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0c" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9809, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9810, + "pitch": null, + "reason": null, + "target": { + "x": 1.6817626953125, + "y": 2.1435546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9810, + "pitch": null, + "reason": null, + "target": { + "x": 1.6817626953125, + "y": 2.1763916015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9810, + "mask": { + "OneIndices": [ + 1, + 26 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9812, + "pitch": null, + "reason": null, + "target": { + "x": 1.6817626953125, + "y": 2.218017578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9812, + "pitch": null, + "reason": null, + "target": { + "x": 1.89111328125, + "y": 2.4239501953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 243075, + "y": 369659, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9812, + "otherUnit": null, + "sequence": 1138, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9814, + "pitch": null, + "reason": null, + "target": { + "x": 1.7216796875, + "y": 2.284423828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9814, + "pitch": null, + "reason": null, + "target": { + "x": 1.753662109375, + "y": 2.31640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9814, + "pitch": null, + "reason": null, + "target": { + "x": 1.8944091796875, + "y": 2.4591064453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9816, + "pitch": null, + "reason": null, + "target": { + "x": 1.7945556640625, + "y": 2.357177734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 8, + "Data": "0xf0" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9816, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9817, + "pitch": null, + "reason": null, + "target": { + "x": 1.822509765625, + "y": 2.412353515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9817, + "pitch": null, + "reason": null, + "target": { + "x": 1.900390625, + "y": 2.4951171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9817, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.22314453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 244433, + "y": 369505, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9817, + "otherUnit": null, + "sequence": 1139, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9817, + "pitch": null, + "reason": null, + "target": { + "x": 1.68505859375, + "y": 2.1268310546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9818, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.0777587890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9820, + "pitch": null, + "reason": null, + "target": { + "x": 1.9306640625, + "y": 2.5894775390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9820, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 1.992431640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9820, + "mask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9820, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 244319, + "y": 368635, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9820, + "otherUnit": null, + "sequence": 1140, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9820, + "pitch": null, + "reason": null, + "target": { + "x": 1.702880859375, + "y": 2.1744384765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9823, + "pitch": null, + "reason": null, + "target": { + "x": 1.952392578125, + "y": 2.634521484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9823, + "pitch": null, + "reason": null, + "target": { + "x": 1.9127197265625, + "y": 2.5313720703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9823, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9823, + "pitch": null, + "reason": null, + "target": { + "x": 1.7213134765625, + "y": 2.214111328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9824, + "pitch": null, + "reason": null, + "target": { + "x": 1.97265625, + "y": 2.677978515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9824, + "otherUnit": null, + "sequence": 1141, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9824, + "pitch": null, + "reason": null, + "target": { + "x": 1.7418212890625, + "y": 2.255615234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9825, + "pitch": null, + "reason": null, + "target": { + "x": 1.984619140625, + "y": 2.7447509765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9825, + "pitch": null, + "reason": null, + "target": { + "x": 1.8992919921875, + "y": 2.78662109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9825, + "pitch": null, + "reason": null, + "target": { + "x": 1.8992919921875, + "y": 2.73681640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 62914564, + 110624769 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9827, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9827, + "pitch": null, + "reason": null, + "target": { + "x": 1.8992919921875, + "y": 2.6856689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9827, + "pitch": null, + "reason": null, + "target": { + "x": 1.766845703125, + "y": 2.3048095703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9828, + "pitch": null, + "reason": null, + "target": { + "x": 2.0010986328125, + "y": 2.833251953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9828, + "pitch": null, + "reason": null, + "target": { + "x": 1.791259765625, + "y": 2.3519287109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9829, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9831, + "pitch": null, + "reason": null, + "target": { + "x": 1.922607421875, + "y": 2.5614013671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9831, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9831, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.22314453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9831, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9831, + "pitch": null, + "reason": null, + "target": { + "x": 1.814208984375, + "y": 2.3963623046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9832, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.5106201171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9833, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.6370849609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 297139, + "y": 388129, + "z": 48168 + }, + "snapshotUnitLink": 128, + "snapshotUpkeepPlayerId": 1, + "tag": 71827459, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9833, + "otherUnit": null, + "sequence": 849, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 248201, + "y": 369702, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9833, + "otherUnit": null, + "sequence": 1142, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9835, + "pitch": null, + "reason": null, + "target": { + "x": 1.822509765625, + "y": 2.4964599609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9835, + "pitch": null, + "reason": null, + "target": { + "x": 1.9364013671875, + "y": 2.5982666015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9835, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.82666015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9836, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9836, + "target": { + "x": 36.72509765625, + "y": 50.88916015625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9836, + "sequence": 850, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9836, + "pitch": null, + "reason": null, + "target": { + "x": 1.863037109375, + "y": 2.8582763671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9838, + "pitch": null, + "reason": null, + "target": { + "x": 1.822509765625, + "y": 2.568359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 249730, + "y": 372678, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9838, + "otherUnit": null, + "sequence": 1143, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9839, + "pitch": null, + "reason": null, + "target": { + "x": 1.94482421875, + "y": 2.6319580078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9839, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9840, + "pitch": null, + "reason": null, + "target": { + "x": 1.822509765625, + "y": 2.42724609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9842, + "pitch": null, + "reason": null, + "target": { + "x": 1.9493408203125, + "y": 2.665771484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 248674, + "y": 382227, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9842, + "otherUnit": null, + "sequence": 1144, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 127139841, + 128974850, + 129236996, + 129499137, + 130285573 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9843, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9843, + "otherUnit": null, + "sequence": 851, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9843, + "pitch": null, + "reason": null, + "target": { + "x": 1.9957275390625, + "y": 2.9561767578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9844, + "pitch": null, + "reason": null, + "target": { + "x": 1.9571533203125, + "y": 2.707763671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9844, + "pitch": null, + "reason": null, + "target": { + "x": 2.084228515625, + "y": 3.0794677734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 127139841 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9844, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9844, + "pitch": null, + "reason": null, + "target": { + "x": 1.822509765625, + "y": 2.4654541015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9846, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 248672, + "y": 383699, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9846, + "otherUnit": null, + "sequence": 1145, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 329728, + "y": 440320, + "z": 32768 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 123731969, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9847, + "otherUnit": null, + "sequence": 852, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9847, + "pitch": null, + "reason": null, + "target": { + "x": 1.822509765625, + "y": 2.507080078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9850, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 9850, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 40.25, + "y": 53.75, + "z": 4 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 123731969, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9850, + "sequence": 853, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 248016, + "y": 383903, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9850, + "otherUnit": null, + "sequence": 1146, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9850, + "pitch": null, + "reason": null, + "target": { + "x": 1.822509765625, + "y": 2.5478515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9851, + "pitch": null, + "reason": null, + "target": { + "x": 1.96337890625, + "y": 2.741455078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9851, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9853, + "pitch": null, + "reason": null, + "target": { + "x": 1.822509765625, + "y": 2.6275634765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9853, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9853, + "otherUnit": null, + "sequence": 1147, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9853, + "pitch": null, + "reason": null, + "target": { + "x": 1.8992919921875, + "y": 2.7239990234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9854, + "pitch": null, + "reason": null, + "target": { + "x": 1.822509765625, + "y": 2.6595458984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9854, + "pitch": null, + "reason": null, + "target": { + "x": 1.8992919921875, + "y": 2.824951171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9855, + "pitch": null, + "reason": null, + "target": { + "x": 1.8992919921875, + "y": 2.865478515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [ + 15, + 22, + 23 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9857, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9857, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 65 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9858, + "otherUnit": null, + "sequence": 854, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9858, + "pitch": null, + "reason": null, + "target": { + "x": 1.822509765625, + "y": 2.580322265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 122683393 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9859, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 122683393 + ], + "removeMask": { + "OneIndices": [ + 16 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9859, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 256721, + "y": 392100, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9859, + "otherUnit": null, + "sequence": 1148, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9861, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9862, + "target": { + "x": 31.602294921875, + "y": 47.9814453125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9862, + "sequence": 1149, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9864, + "pitch": null, + "reason": null, + "target": { + "x": 2.1759033203125, + "y": 3.0794677734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9864, + "pitch": null, + "reason": null, + "target": { + "x": 1.822509765625, + "y": 2.6185302734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9865, + "sequence": 855, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9865, + "sequence": 856, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9865, + "pitch": null, + "reason": null, + "target": { + "x": 2.3306884765625, + "y": 2.990966796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9865, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9866, + "sequence": 857, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9866, + "pitch": null, + "reason": null, + "target": { + "x": 2.3306884765625, + "y": 2.8551025390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 126877698, + 127401988 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9866, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 126877698, + 127401988 + ], + "removeMask": { + "OneIndices": [ + 23, + 24 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9866, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 271186, + "y": 392708, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9866, + "otherUnit": null, + "sequence": 1150, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9868, + "pitch": null, + "reason": null, + "target": { + "x": 2.3306884765625, + "y": 2.8203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9868, + "pitch": null, + "reason": null, + "target": { + "x": 1.822509765625, + "y": 2.6534423828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9870, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 268355, + "y": 387861, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9872, + "otherUnit": null, + "sequence": 1151, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9875, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 269103, + "y": 389653, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9875, + "otherUnit": null, + "sequence": 1152, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 343347, + "y": 370013, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9876, + "otherUnit": null, + "sequence": 858, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9879, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9879, + "sequence": 859, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 272277, + "y": 391046, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9881, + "otherUnit": null, + "sequence": 1153, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9883, + "pitch": null, + "reason": null, + "target": { + "x": 1.9312744140625, + "y": 2.7330322265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9883, + "pitch": null, + "reason": null, + "target": { + "x": 2.3306884765625, + "y": 2.9752197265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9884, + "pitch": null, + "reason": null, + "target": { + "x": 2.3306884765625, + "y": 3.0068359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 274048, + "y": 392357, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9884, + "otherUnit": null, + "sequence": 1154, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9885, + "pitch": null, + "reason": null, + "target": { + "x": 1.914794921875, + "y": 2.693115234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 280527, + "y": 398237, + "z": 32768 + }, + "snapshotUnitLink": 28, + "snapshotUpkeepPlayerId": 1, + "tag": 53215237, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9890, + "otherUnit": null, + "sequence": 1155, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 100925442, + 101449730, + 121896961 + ], + "removeMask": { + "Mask": { + "Count": 28, + "Data": "0xdfffdd0b" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9891, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 258, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 284811, + "y": 396588, + "z": 32768 + }, + "snapshotUnitLink": 28, + "snapshotUpkeepPlayerId": 1, + "tag": 71565321, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9894, + "otherUnit": null, + "sequence": 1156, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9896, + "pitch": null, + "reason": null, + "target": { + "x": 1.950439453125, + "y": 2.7030029296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x17" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9896, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 100925442, + 121896961, + 88604673 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9901, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 9901, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 35.8863525390625, + "y": 47.9996337890625, + "z": 4.00146484375 + }, + "snapshotUnitLink": 29, + "snapshotUpkeepPlayerId": 1, + "tag": 66584578, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9901, + "sequence": null, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9902, + "pitch": null, + "reason": null, + "target": { + "x": 1.9796142578125, + "y": 2.724853515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9903, + "pitch": null, + "reason": null, + "target": { + "x": 2.3306884765625, + "y": 2.88671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9905, + "pitch": null, + "reason": null, + "target": { + "x": 2.00634765625, + "y": 2.7501220703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9905, + "target": { + "x": 36.626708984375, + "y": 47.77197265625, + "z": 4.0477294921875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9905, + "sequence": null, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9907, + "pitch": null, + "reason": null, + "target": { + "x": 2.02880859375, + "y": 2.8580322265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9909, + "pitch": null, + "reason": null, + "target": { + "x": 2.0452880859375, + "y": 2.7818603515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9910, + "pitch": null, + "reason": null, + "target": { + "x": 1.93994140625, + "y": 2.865478515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9911, + "pitch": null, + "reason": null, + "target": { + "x": 2.0701904296875, + "y": 2.80078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9911, + "pitch": null, + "reason": null, + "target": { + "x": 1.9886474609375, + "y": 2.865478515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9911, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 64225281 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9913, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9914, + "pitch": null, + "reason": null, + "target": { + "x": 2.09814453125, + "y": 2.8275146484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9914, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9916, + "pitch": null, + "reason": null, + "target": { + "x": 2.0640869140625, + "y": 2.8616943359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0a" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9916, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9918, + "pitch": null, + "reason": null, + "target": { + "x": 1.8720703125, + "y": 2.6707763671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9918, + "pitch": null, + "reason": null, + "target": { + "x": 2.1241455078125, + "y": 2.85205078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9918, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9920, + "pitch": null, + "reason": null, + "target": { + "x": 1.9112548828125, + "y": 2.7099609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 65 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9920, + "otherUnit": null, + "sequence": 860, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9920, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9921, + "pitch": null, + "reason": null, + "target": { + "x": 1.9776611328125, + "y": 2.7763671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 88604673 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9921, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 88604673 + ], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x40" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9921, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9924, + "pitch": null, + "reason": null, + "target": { + "x": 1.9881591796875, + "y": 2.8531494140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9924, + "pitch": null, + "reason": null, + "target": { + "x": 2.150634765625, + "y": 2.871337890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9925, + "pitch": null, + "reason": null, + "target": { + "x": 1.9881591796875, + "y": 2.8916015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9925, + "sequence": 861, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9925, + "pitch": null, + "reason": null, + "target": { + "x": 1.8487548828125, + "y": 2.6756591796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9926, + "sequence": 862, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9926, + "pitch": null, + "reason": null, + "target": { + "x": 2.3306884765625, + "y": 2.8109130859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 115343362 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9926, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 115343362 + ], + "removeMask": { + "OneIndices": [ + 10 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9926, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9926, + "sequence": 863, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9928, + "pitch": null, + "reason": null, + "target": { + "x": 2.3306884765625, + "y": 2.7255859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 125042692, + 127926275 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0c" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9928, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 125042692, + 127926275 + ], + "removeMask": { + "OneIndices": [ + 19, + 26 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9928, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 284811, + "y": 396588, + "z": 32768 + }, + "snapshotUnitLink": 28, + "snapshotUpkeepPlayerId": 1, + "tag": 71565321, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9928, + "otherUnit": null, + "sequence": 1157, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9929, + "pitch": null, + "reason": null, + "target": { + "x": 1.8795166015625, + "y": 2.706787109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9931, + "pitch": null, + "reason": null, + "target": { + "x": 1.900146484375, + "y": 2.7362060546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 287229, + "y": 392387, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9932, + "otherUnit": null, + "sequence": 1158, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9932, + "pitch": null, + "reason": null, + "target": { + "x": 1.91845703125, + "y": 2.765869140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9935, + "pitch": null, + "reason": null, + "target": { + "x": 1.939697265625, + "y": 2.8031005859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9936, + "pitch": null, + "reason": null, + "target": { + "x": 2.18115234375, + "y": 2.89111328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 66584578, + 117178370 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9936, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 324536, + "y": 362360, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9936, + "otherUnit": null, + "sequence": 864, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 293183, + "y": 398861, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9936, + "otherUnit": null, + "sequence": 1159, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9936, + "pitch": null, + "reason": null, + "target": { + "x": 1.9619140625, + "y": 2.8433837890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9937, + "pitch": null, + "reason": null, + "target": { + "x": 2.0185546875, + "y": 2.9219970703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": 12986, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9937, + "pitch": null, + "reason": null, + "target": { + "x": 2.100830078125, + "y": 2.8580322265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9939, + "pitch": null, + "reason": null, + "target": { + "x": 2.070556640625, + "y": 2.9739990234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9939, + "target": { + "x": 40.34326171875, + "y": 43.6380615234375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9939, + "sequence": 865, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 292849, + "y": 407514, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9939, + "otherUnit": null, + "sequence": 1160, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9939, + "pitch": null, + "reason": null, + "target": { + "x": 1.9808349609375, + "y": 2.8782958984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9942, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 3.0460205078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9943, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 3.11474609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9943, + "pitch": null, + "reason": null, + "target": { + "x": 2.3306884765625, + "y": 2.7603759765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 292541, + "y": 414542, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9943, + "otherUnit": null, + "sequence": 1161, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9943, + "pitch": null, + "reason": null, + "target": { + "x": 2.001953125, + "y": 2.910888671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9944, + "pitch": null, + "reason": null, + "target": { + "x": 2.204345703125, + "y": 2.7950439453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9944, + "pitch": null, + "reason": null, + "target": { + "x": 2.0810546875, + "y": 2.7950439453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9946, + "pitch": null, + "reason": null, + "target": { + "x": 2.2115478515625, + "y": 2.908203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 290478, + "y": 413926, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9946, + "otherUnit": null, + "sequence": 1162, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9946, + "pitch": null, + "reason": null, + "target": { + "x": 2.0284423828125, + "y": 2.941650390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9947, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9948, + "pitch": null, + "reason": null, + "target": { + "x": 2.150634765625, + "y": 2.7950439453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9948, + "pitch": null, + "reason": null, + "target": { + "x": 2.0489501953125, + "y": 2.97021484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9950, + "pitch": null, + "reason": null, + "target": { + "x": 2.305419921875, + "y": 2.7950439453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 285785, + "y": 410076, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9950, + "otherUnit": null, + "sequence": 1163, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9951, + "target": { + "x": 44.950927734375, + "y": 50.0902099609375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9951, + "sequence": 866, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9951, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 2.7950439453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9951, + "pitch": null, + "reason": null, + "target": { + "x": 2.0701904296875, + "y": 3.001953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9952, + "pitch": null, + "reason": null, + "target": { + "x": 2.0928955078125, + "y": 3.0369873046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9954, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x09" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9954, + "target": { + "x": 43.221923828125, + "y": 49.2760009765625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9954, + "sequence": 867, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9954, + "pitch": null, + "reason": null, + "target": { + "x": 2.11376953125, + "y": 3.0697021484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9957, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 3.082763671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 9957, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 34.7669677734375, + "y": 48.41162109375, + "z": 4 + }, + "snapshotUnitLink": 28, + "snapshotUpkeepPlayerId": 1, + "tag": 71565321, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9957, + "sequence": 1164, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9957, + "pitch": null, + "reason": null, + "target": { + "x": 2.134033203125, + "y": 3.1015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9959, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 3.010009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9959, + "target": { + "x": 42.6982421875, + "y": 49.793701171875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9959, + "sequence": 868, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9961, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 2.966796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 9961, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9962, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9962, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 2.89306640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9962, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 3.0478515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 9962, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 35.25, + "y": 49.25, + "z": 4 + }, + "snapshotUnitLink": 159, + "snapshotUpkeepPlayerId": 1, + "tag": 93323266, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9962, + "sequence": 1165, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9963, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 3.0858154296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9963, + "target": { + "x": 41.75048828125, + "y": 53.7451171875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9963, + "sequence": 869, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": 11366, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9965, + "pitch": null, + "reason": null, + "target": { + "x": 2.1337890625, + "y": 2.8511962890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9966, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0d" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9966, + "target": { + "x": 41.83544921875, + "y": 53.2962646484375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9966, + "sequence": 870, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9966, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9968, + "otherUnit": null, + "sequence": 1166, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9968, + "pitch": null, + "reason": null, + "target": { + "x": 2.1436767578125, + "y": 3.065673828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9969, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9969, + "pitch": null, + "reason": null, + "target": { + "x": 1.9886474609375, + "y": 2.94091796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": 9480, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9970, + "pitch": null, + "reason": null, + "target": { + "x": 2.163818359375, + "y": 2.876708984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9970, + "target": { + "x": 42.1163330078125, + "y": 53.16455078125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9970, + "sequence": 871, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9970, + "pitch": null, + "reason": null, + "target": { + "x": 1.9886474609375, + "y": 2.9722900390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9970, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9970, + "pitch": null, + "reason": null, + "target": { + "x": 2.143310546875, + "y": 3.030517578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9973, + "pitch": null, + "reason": null, + "target": { + "x": 2.238525390625, + "y": 2.925048828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9973, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0d" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9973, + "target": { + "x": 42.0618896484375, + "y": 52.834716796875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9973, + "sequence": 872, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9973, + "pitch": null, + "reason": null, + "target": { + "x": 2.1427001953125, + "y": 2.9903564453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 292747, + "y": 403321, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9974, + "otherUnit": null, + "sequence": 1167, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9976, + "pitch": null, + "reason": null, + "target": { + "x": 2.2720947265625, + "y": 2.945068359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9976, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 3.117431640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9977, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 2.908447265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9977, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 3.2059326171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9977, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9978, + "pitch": null, + "reason": null, + "target": { + "x": 2.3023681640625, + "y": 2.957763671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 293517, + "y": 410301, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9978, + "otherUnit": null, + "sequence": 1168, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9980, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 2.828369140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9980, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9981, + "target": { + "x": 38.4033203125, + "y": 55.920654296875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9981, + "sequence": 873, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 290721, + "y": 412222, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9983, + "otherUnit": null, + "sequence": 1169, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9983, + "pitch": null, + "reason": null, + "target": { + "x": 2.142333984375, + "y": 2.9566650390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9987, + "pitch": null, + "reason": null, + "target": { + "x": 2.322509765625, + "y": 3.000244140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 290469, + "y": 413798, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9987, + "otherUnit": null, + "sequence": 1170, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9987, + "pitch": null, + "reason": null, + "target": { + "x": 2.142333984375, + "y": 2.92041015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9988, + "pitch": null, + "reason": null, + "target": { + "x": 2.3321533203125, + "y": 3.0318603515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9988, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 3.171142578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9988, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 3.0321044921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9989, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 2.994140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9989, + "pitch": null, + "reason": null, + "target": { + "x": 2.142333984375, + "y": 2.8841552734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 290489, + "y": 413976, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9991, + "otherUnit": null, + "sequence": 1171, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9992, + "pitch": null, + "reason": null, + "target": { + "x": 2.142333984375, + "y": 2.8486328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9994, + "pitch": null, + "reason": null, + "target": { + "x": 2.3375244140625, + "y": 3.068115234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9994, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 2.9024658203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9994, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 291632, + "y": 418530, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9995, + "otherUnit": null, + "sequence": 1172, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9996, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 2.885986328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9996, + "pitch": null, + "reason": null, + "target": { + "x": 2.16162109375, + "y": 2.9097900390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9996, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 2.8045654296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9998, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 2.9283447265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 9998, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9999, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 2.98681640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 9999, + "pitch": null, + "reason": null, + "target": { + "x": 2.3447265625, + "y": 3.1041259765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 9999, + "target": { + "x": 41.0267333984375, + "y": 44.9349365234375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 9999, + "sequence": 874, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 294325, + "y": 415198, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 9999, + "otherUnit": null, + "sequence": 1173, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10000, + "pitch": null, + "reason": null, + "target": { + "x": 2.172119140625, + "y": 2.9442138671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10000, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0d" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10002, + "pitch": null, + "reason": null, + "target": { + "x": 2.1893310546875, + "y": 2.9749755859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10002, + "target": { + "x": 41.2371826171875, + "y": 45.11474609375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10002, + "sequence": 875, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10003, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 2.83935546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 123 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10003, + "otherUnit": null, + "sequence": 1174, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10003, + "pitch": null, + "reason": null, + "target": { + "x": 1.9886474609375, + "y": 3.007080078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10004, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10004, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 2.9783935546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 269950, + "y": 454447, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10004, + "otherUnit": null, + "sequence": 1175, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10004, + "pitch": null, + "reason": null, + "target": { + "x": 1.9886474609375, + "y": 3.062744140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10006, + "target": { + "x": 42.08740234375, + "y": 55.5931396484375, + "z": 4.0477294921875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10006, + "sequence": 876, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10006, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 3.1015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10006, + "pitch": null, + "reason": null, + "target": { + "x": 2.142333984375, + "y": 2.880859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10007, + "pitch": null, + "reason": null, + "target": { + "x": 2.2088623046875, + "y": 3.0087890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10007, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0d" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10007, + "target": { + "x": 32.9925537109375, + "y": 55.0074462890625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10007, + "sequence": 1176, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10009, + "target": { + "x": 42.1314697265625, + "y": 54.8675537109375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10009, + "sequence": 877, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10009, + "pitch": null, + "reason": null, + "target": { + "x": 2.142333984375, + "y": 2.91845703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10010, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 3.018798828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10010, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 3.06201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10010, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10011, + "target": { + "x": 42.1373291015625, + "y": 54.635498046875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10011, + "sequence": 878, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 268907, + "y": 446243, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10011, + "otherUnit": null, + "sequence": 1177, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10011, + "pitch": null, + "reason": null, + "target": { + "x": 2.142333984375, + "y": 2.962890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10013, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 3.1212158203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10014, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0d" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10014, + "target": { + "x": 42.17919921875, + "y": 54.40771484375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10014, + "sequence": 879, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10014, + "pitch": null, + "reason": null, + "target": { + "x": 2.142333984375, + "y": 2.999755859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 268322, + "y": 447443, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10015, + "otherUnit": null, + "sequence": 1178, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10018, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10018, + "pitch": null, + "reason": null, + "target": { + "x": 1.9886474609375, + "y": 3.127685546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10018, + "pitch": null, + "reason": null, + "target": { + "x": 2.142333984375, + "y": 3.0350341796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10020, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10020, + "otherUnit": null, + "sequence": 1179, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10021, + "pitch": null, + "reason": null, + "target": { + "x": 2.06640625, + "y": 3.1392822265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10022, + "pitch": null, + "reason": null, + "target": { + "x": 2.108154296875, + "y": 3.1392822265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10022, + "pitch": null, + "reason": null, + "target": { + "x": 2.142333984375, + "y": 3.0755615234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10024, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10025, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0d" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10025, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 3.158447265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10026, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 3.28173828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10026, + "pitch": null, + "reason": null, + "target": { + "x": 2.142333984375, + "y": 3.11376953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 270508, + "y": 432883, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10028, + "otherUnit": null, + "sequence": 1180, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10029, + "pitch": null, + "reason": null, + "target": { + "x": 2.3486328125, + "y": 3.13623046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 68419585, + 69206018, + 66846723, + 79429638, + 80216068, + 87818243, + 93061123, + 93585410, + 100401155, + 103546884, + 103809027, + 106692611, + 107479043, + 108265474, + 110886914, + 111411202, + 116654082, + 128712707, + 130023426 + ], + "removeMask": { + "ZeroIndices": [ + 20 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10029, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10030, + "pitch": null, + "reason": null, + "target": { + "x": 2.225341796875, + "y": 3.0469970703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10030, + "target": { + "x": 37.25634765625, + "y": 58.59814453125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10030, + "sequence": 880, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10032, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 3.44287109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 284172, + "y": 444797, + "z": 32768 + }, + "snapshotUnitLink": 126, + "snapshotUpkeepPlayerId": 1, + "tag": 79429638, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10032, + "otherUnit": null, + "sequence": 1181, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10033, + "pitch": null, + "reason": null, + "target": { + "x": 2.3402099609375, + "y": 3.5155029296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10035, + "pitch": null, + "reason": null, + "target": { + "x": 2.2418212890625, + "y": 3.0755615234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10035, + "pitch": null, + "reason": null, + "target": { + "x": 2.3377685546875, + "y": 3.166748046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10035, + "pitch": null, + "reason": null, + "target": { + "x": 2.204345703125, + "y": 3.4271240234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 10035, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 34, + "y": 54.75, + "z": 4 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25690113, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10035, + "sequence": 1182, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10037, + "pitch": null, + "reason": null, + "target": { + "x": 1.964111328125, + "y": 3.1868896484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10039, + "pitch": null, + "reason": null, + "target": { + "x": 2.3060302734375, + "y": 3.17724609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10039, + "pitch": null, + "reason": null, + "target": { + "x": 2.108154296875, + "y": 3.1729736328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 270444, + "y": 461449, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10040, + "otherUnit": null, + "sequence": 1183, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10041, + "pitch": null, + "reason": null, + "target": { + "x": 2.263427734375, + "y": 3.177001953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10041, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10043, + "pitch": null, + "reason": null, + "target": { + "x": 1.964111328125, + "y": 3.0794677734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 271536, + "y": 459948, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10043, + "otherUnit": null, + "sequence": 1184, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10044, + "pitch": null, + "reason": null, + "target": { + "x": 1.964111328125, + "y": 3.0384521484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10046, + "pitch": null, + "reason": null, + "target": { + "x": 2.2537841796875, + "y": 3.104736328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 258079, + "y": 386866, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10046, + "otherUnit": null, + "sequence": 881, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10047, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0d" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10048, + "target": { + "x": 31.3111572265625, + "y": 47.59423828125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10048, + "sequence": 882, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 271828, + "y": 460699, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10050, + "otherUnit": null, + "sequence": 1185, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10051, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10052, + "pitch": null, + "reason": null, + "target": { + "x": 2.2552490234375, + "y": 3.2130126953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10052, + "target": { + "x": 31.3414306640625, + "y": 47.8017578125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10052, + "sequence": 883, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 278528, + "y": 456704, + "z": 32768 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 30146561, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10052, + "otherUnit": null, + "sequence": 1186, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10056, + "pitch": null, + "reason": null, + "target": { + "x": 2.09375, + "y": 3.0384521484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10056, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10058, + "pitch": null, + "reason": null, + "target": { + "x": 2.131591796875, + "y": 3.0384521484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10059, + "pitch": null, + "reason": null, + "target": { + "x": 2.254638671875, + "y": 3.2445068359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10059, + "pitch": null, + "reason": null, + "target": { + "x": 2.108154296875, + "y": 3.2158203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 275931, + "y": 470686, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10059, + "otherUnit": null, + "sequence": 1187, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10061, + "pitch": null, + "reason": null, + "target": { + "x": 2.26123046875, + "y": 3.14306640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10061, + "target": { + "x": 33.2816162109375, + "y": 48.239013671875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10061, + "sequence": 884, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10063, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0d" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 276394, + "y": 469691, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10063, + "otherUnit": null, + "sequence": 1188, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10065, + "target": { + "x": 33.25927734375, + "y": 48.1932373046875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10065, + "sequence": 885, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10066, + "pitch": null, + "reason": null, + "target": { + "x": 2.2628173828125, + "y": 3.177490234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 268290, + "y": 464618, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10067, + "otherUnit": null, + "sequence": 1189, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10070, + "pitch": null, + "reason": null, + "target": { + "x": 2.2249755859375, + "y": 3.2138671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10070, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10070, + "pitch": null, + "reason": null, + "target": { + "x": 2.131591796875, + "y": 3.177490234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10071, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10073, + "otherUnit": null, + "sequence": 1190, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10074, + "pitch": null, + "reason": null, + "target": { + "x": 2.2000732421875, + "y": 3.1817626953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10074, + "target": { + "x": 31.0247802734375, + "y": 52.9715576171875, + "z": 4.994140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10074, + "sequence": 886, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10076, + "pitch": null, + "reason": null, + "target": { + "x": 2.2523193359375, + "y": 3.20751953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10077, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0d" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 74973188, + 106168321, + 110362626, + 112984065, + 119013379, + 120061953 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10077, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10080, + "target": { + "x": 30.9990234375, + "y": 52.982421875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10080, + "sequence": 887, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10080, + "pitch": null, + "reason": null, + "target": { + "x": 2.108154296875, + "y": 3.146240234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10081, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10081, + "pitch": null, + "reason": null, + "target": { + "x": 2.108154296875, + "y": 3.112548828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10082, + "pitch": null, + "reason": null, + "target": { + "x": 2.18603515625, + "y": 3.153564453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 276204, + "y": 389094, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10082, + "otherUnit": null, + "sequence": 1191, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10087, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0d" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 67371010, + 96206851 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10089, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10092, + "pitch": null, + "reason": null, + "target": { + "x": 2.2138671875, + "y": 3.17578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 26, + "Data": "0xddef9e03" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10092, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10093, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10097, + "pitch": null, + "reason": null, + "target": { + "x": 2.2664794921875, + "y": 3.23681640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 299451, + "y": 400269, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10097, + "otherUnit": null, + "sequence": 1192, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10099, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10099, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10100, + "otherUnit": null, + "sequence": 1193, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10104, + "target": { + "x": 36.6376953125, + "y": 49.1162109375, + "z": 4.0477294921875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10104, + "sequence": 888, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 9, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 50593795, + 77856769, + 79691779, + 96206851, + 101187587, + 104071170, + 106430465, + 107216898, + 112197633, + 82575361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10106, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 307447, + "y": 402574, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10107, + "otherUnit": null, + "sequence": 889, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10110, + "target": { + "x": 37.851806640625, + "y": 49.16796875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10110, + "sequence": 890, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 78118913 + ], + "removeMask": { + "Mask": { + "Count": 10, + "Data": "0xe703" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10111, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10113, + "target": { + "x": 38.1634521484375, + "y": 49.431884765625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10113, + "sequence": 891, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 114819085 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10115, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 114819085 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10115, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10115, + "target": { + "x": 38.7994384765625, + "y": 49.6571044921875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10115, + "sequence": 892, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 115867651 + ], + "removeMask": { + "OneIndices": [ + 8 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10118, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 115867651 + ], + "removeMask": { + "OneIndices": [ + 8 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10118, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 65798145, + 79691779, + 101187587, + 104071170, + 106430465, + 112197633, + 82575361, + 121110529 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10118, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 261324, + "y": 445648, + "z": 39005 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10119, + "otherUnit": null, + "sequence": 1194, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 318049, + "y": 407289, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10122, + "otherUnit": null, + "sequence": 893, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 71827463 + ], + "removeMask": { + "OneIndices": [ + 9 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10122, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 71827463 + ], + "removeMask": { + "OneIndices": [ + 9 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10122, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10122, + "mask": { + "Mask": { + "Count": 22, + "Data": "0x404220" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10128, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 270812, + "y": 403587, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10128, + "otherUnit": null, + "sequence": 1195, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 122683393 + ], + "removeMask": { + "Mask": { + "Count": 11, + "Data": "0x7f02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10130, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 316512, + "y": 412478, + "z": 33159 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10130, + "otherUnit": null, + "sequence": 894, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10130, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 76808196 + ], + "removeMask": { + "OneIndices": [ + 10 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10130, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10130, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10132, + "otherUnit": null, + "sequence": 1196, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10133, + "target": { + "x": 38.7874755859375, + "y": 49.867919921875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10133, + "sequence": 895, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10136, + "target": { + "x": 38.8038330078125, + "y": 49.77978515625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10136, + "sequence": 896, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 50593795, + 77856769, + 78118913, + 96206851, + 101187587, + 106430465, + 107216898 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10136, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x5e" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10139, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 310919, + "y": 404520, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10141, + "otherUnit": null, + "sequence": 897, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10143, + "mask": { + "Mask": { + "Count": 22, + "Data": "0xf34638" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10144, + "mask": { + "OneIndices": [ + 8 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10148, + "target": { + "x": 36.3709716796875, + "y": 48.9498291015625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10148, + "sequence": 898, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 291417, + "y": 431546, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10148, + "otherUnit": null, + "sequence": 1197, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10149, + "mask": { + "Mask": { + "Count": 19, + "Data": "0x3e0a06" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10151, + "target": { + "x": 36.3843994140625, + "y": 48.933837890625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10151, + "sequence": 899, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10151, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10152, + "otherUnit": null, + "sequence": 1198, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10154, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10155, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10156, + "pitch": null, + "reason": null, + "target": { + "x": 2.131591796875, + "y": 3.0699462890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10158, + "pitch": null, + "reason": null, + "target": { + "x": 2.131591796875, + "y": 3.0321044921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 74973188, + 110362626, + 119013379 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10158, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 53215238, + 93585411, + 104857603, + 128974850, + 129236996, + 129499137, + 130285573 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10159, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10159, + "otherUnit": null, + "sequence": 900, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 275650, + "y": 418831, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10159, + "otherUnit": null, + "sequence": 1199, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 53215238 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10160, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 272873, + "y": 420180, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10163, + "otherUnit": null, + "sequence": 1200, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10165, + "sequence": 901, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10166, + "sequence": 902, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 93585411 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10166, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 272459, + "y": 420781, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10166, + "otherUnit": null, + "sequence": 1201, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10167, + "sequence": 903, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10167, + "sequence": 904, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 104857603 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10167, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10167, + "sequence": 905, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 292712, + "y": 385889, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10169, + "otherUnit": null, + "sequence": 906, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 128974850, + 129236996, + 129499137 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x38" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10169, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 131328, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10169, + "otherUnit": null, + "sequence": 907, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10170, + "sequence": 908, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10170, + "sequence": 909, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 130285573 + ], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x40" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10170, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 269694, + "y": 423107, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10170, + "otherUnit": null, + "sequence": 1202, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10173, + "mask": { + "Mask": { + "Count": 9, + "Data": "0x0101" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10173, + "mask": { + "Mask": { + "Count": 22, + "Data": "0xf35638" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 50593795, + 79691779, + 104071170, + 106430465, + 112197633, + 119013379, + 88080385, + 89391105, + 125566979, + 127664130, + 128188419, + 128450562, + 82575361, + 120848385 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10174, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 11 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10174, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10177, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 291108, + "y": 388006, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10177, + "otherUnit": null, + "sequence": 910, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10177, + "target": { + "x": 33.1103515625, + "y": 51.7760009765625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10177, + "sequence": 1203, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 8, + "Data": "0x80" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10178, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10178, + "mask": { + "Mask": { + "Count": 26, + "Data": "0xbec8d200" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 10 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10180, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 93323272 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10180, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 93323272 + ], + "removeMask": { + "OneIndices": [ + 16 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10180, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 14 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10180, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10180, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10180, + "otherUnit": null, + "sequence": 1204, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10181, + "target": { + "x": 35.5211181640625, + "y": 47.3736572265625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10181, + "sequence": 911, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10182, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10185, + "target": { + "x": 35.5069580078125, + "y": 47.390380859375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10185, + "sequence": 912, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 67633161, + 107216900, + 83361796, + 124780550 + ], + "removeMask": { + "OneIndices": [ + 12, + 23, + 24 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10185, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [ + 2 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10186, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10186, + "sequence": 1205, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10188, + "pitch": null, + "reason": null, + "target": { + "x": 2.131591796875, + "y": 3.1490478515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10188, + "sequence": 1206, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 120848385, + 121110529 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10189, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10189, + "pitch": null, + "reason": null, + "target": { + "x": 2.131591796875, + "y": 3.2532958984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 115605509, + 128188421 + ], + "removeMask": { + "OneIndices": [ + 17 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10191, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 106168321, + 112984065, + 120061953, + 109838337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10191, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 101187591, + 105644045, + 124518410, + 127401989 + ], + "removeMask": { + "OneIndices": [ + 23, + 25 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10192, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10192, + "mask": { + "Mask": { + "Count": 22, + "Data": "0xf35638" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10195, + "pitch": null, + "reason": null, + "target": { + "x": 2.131591796875, + "y": 3.098388671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10196, + "target": { + "x": 37.193603515625, + "y": 47.098876953125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10196, + "sequence": 913, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10196, + "pitch": null, + "reason": null, + "target": { + "x": 2.131591796875, + "y": 3.05419921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 308713, + "y": 403670, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10199, + "otherUnit": null, + "sequence": 1207, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10199, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10200, + "pitch": null, + "reason": null, + "target": { + "x": 2.1759033203125, + "y": 3.05419921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10201, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10201, + "pitch": null, + "reason": null, + "target": { + "x": 2.2864990234375, + "y": 2.943603515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10203, + "pitch": null, + "reason": null, + "target": { + "x": 2.3433837890625, + "y": 2.823486328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 106168321, + 112984065, + 120061953 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10204, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10206, + "userid": { + "userId": 2 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 273247, + "y": 396619, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10206, + "otherUnit": null, + "sequence": 1208, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10208, + "target": { + "x": 33.2198486328125, + "y": 48.3809814453125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10208, + "sequence": 1209, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 87293955, + 109838337 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10210, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10210, + "mask": { + "Mask": { + "Count": 22, + "Data": "0xf35638" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 88604673, + 115343362, + 125042692, + 127926275 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10211, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10212, + "pitch": null, + "reason": null, + "target": { + "x": 2.3433837890625, + "y": 2.9561767578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10214, + "pitch": null, + "reason": null, + "target": { + "x": 2.3433837890625, + "y": 3.1015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 123 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10214, + "otherUnit": null, + "sequence": 1210, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 9, + "Data": "0x0900" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10214, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 284828, + "y": 429134, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10215, + "otherUnit": null, + "sequence": 914, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10215, + "pitch": null, + "reason": null, + "target": { + "x": 2.3433837890625, + "y": 3.1363525390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [ + 9 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10216, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 274559, + "y": 421291, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10218, + "otherUnit": null, + "sequence": 1211, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10219, + "mask": { + "Mask": { + "Count": 10, + "Data": "0x3303" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10221, + "mask": { + "Mask": { + "Count": 22, + "Data": "0xf3d738" + } + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 270137, + "y": 424415, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10223, + "otherUnit": null, + "sequence": 1212, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10226, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10226, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10227, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10230, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10233, + "mask": { + "Mask": { + "Count": 22, + "Data": "0xf3d738" + } + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10237, + "target": { + "x": 32.635986328125, + "y": 50.2808837890625, + "z": 4.1585693359375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10237, + "sequence": 1215, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10238, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10238, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 71827464 + ], + "removeMask": { + "OneIndices": [ + 8 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10241, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 237 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 305152, + "y": 440320, + "z": 32768 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 94896129, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10241, + "otherUnit": null, + "sequence": 915, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10241, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10244, + "pitch": null, + "reason": null, + "target": { + "x": 2.236572265625, + "y": 3.227783203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10244, + "pitch": null, + "reason": null, + "target": { + "x": 2.108154296875, + "y": 3.1845703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 2 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10244, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 127139842 + ], + "removeMask": { + "OneIndices": [ + 16 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10245, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 153 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10245, + "otherUnit": null, + "sequence": 1216, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10247, + "pitch": null, + "reason": null, + "target": { + "x": 2.3433837890625, + "y": 3.1995849609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 72876040, + 101449731 + ], + "removeMask": { + "OneIndices": [ + 24, + 29 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10247, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + }, + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 67633161, + 83361796, + 115605509, + 124780550, + 128188421 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10248, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10248, + "sequence": 1217, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10249, + "pitch": null, + "reason": null, + "target": { + "x": 2.3433837890625, + "y": 3.2374267578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 317792, + "y": 430038, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10251, + "otherUnit": null, + "sequence": 916, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10252, + "pitch": null, + "reason": null, + "target": { + "x": 2.1934814453125, + "y": 3.1494140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10252, + "mask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 291183, + "y": 424344, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10253, + "otherUnit": null, + "sequence": 1218, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10256, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10258, + "target": { + "x": 34.728271484375, + "y": 52.682373046875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10258, + "sequence": 917, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10259, + "otherUnit": null, + "sequence": 1219, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10263, + "mask": { + "Mask": { + "Count": 22, + "Data": "0xf3d738" + } + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 288694, + "y": 436272, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10263, + "otherUnit": null, + "sequence": 1220, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 284590, + "y": 438098, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10266, + "otherUnit": null, + "sequence": 918, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 288702, + "y": 439494, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10267, + "otherUnit": null, + "sequence": 1221, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10270, + "mask": { + "Mask": { + "Count": 33, + "Data": "0xec3b69e501" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10270, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 289385, + "y": 437603, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10271, + "otherUnit": null, + "sequence": 1222, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 8 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10273, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 288707, + "y": 434945, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10277, + "otherUnit": null, + "sequence": 1223, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10277, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10281, + "target": { + "x": 35.165283203125, + "y": 53.0557861328125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10281, + "sequence": 920, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 288581, + "y": 433816, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10281, + "otherUnit": null, + "sequence": 1224, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 288811, + "y": 434250, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10284, + "otherUnit": null, + "sequence": 1225, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10285, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10288, + "mask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 237 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 287131, + "y": 453286, + "z": 32768 + }, + "snapshotUnitLink": 148, + "snapshotUpkeepPlayerId": 1, + "tag": 69206018, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10289, + "otherUnit": null, + "sequence": 921, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10290, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10293, + "otherUnit": null, + "sequence": 1226, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10296, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10296, + "mask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10299, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10300, + "pitch": null, + "reason": null, + "target": { + "x": 2.20654296875, + "y": 3.2044677734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10300, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 289051, + "y": 432336, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10304, + "otherUnit": null, + "sequence": 1227, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10307, + "pitch": null, + "reason": null, + "target": { + "x": 2.1527099609375, + "y": 3.1358642578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10307, + "target": { + "x": 35.40087890625, + "y": 52.7421875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10307, + "sequence": 1228, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10308, + "pitch": null, + "reason": null, + "target": { + "x": 2.194580078125, + "y": 3.174560546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10308, + "pitch": null, + "reason": null, + "target": { + "x": 2.1146240234375, + "y": 3.1259765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10310, + "pitch": null, + "reason": null, + "target": { + "x": 2.08154296875, + "y": 3.121826171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10311, + "pitch": null, + "reason": null, + "target": { + "x": 2.1893310546875, + "y": 3.1385498046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 10314, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 35.0501708984375, + "y": 55.332763671875, + "z": 4 + }, + "snapshotUnitLink": 148, + "snapshotUpkeepPlayerId": 1, + "tag": 69206018, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10314, + "sequence": 922, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10318, + "pitch": null, + "reason": null, + "target": { + "x": 2.3433837890625, + "y": 3.1395263671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10319, + "pitch": null, + "reason": null, + "target": { + "x": 2.3433837890625, + "y": 3.098388671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10319, + "mask": { + "Mask": { + "Count": 11, + "Data": "0x3707" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10322, + "pitch": null, + "reason": null, + "target": { + "x": 2.1107177734375, + "y": 3.137451171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 298557, + "y": 411026, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10323, + "otherUnit": null, + "sequence": 923, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 271829, + "y": 400495, + "z": 49916 + }, + "snapshotUnitLink": 130, + "snapshotUpkeepPlayerId": 1, + "tag": 114819085, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10323, + "otherUnit": null, + "sequence": 1229, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10325, + "pitch": null, + "reason": null, + "target": { + "x": 2.1446533203125, + "y": 3.1512451171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10326, + "mask": { + "Mask": { + "Count": 33, + "Data": "0xec3b69e501" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10329, + "pitch": null, + "reason": null, + "target": { + "x": 2.183837890625, + "y": 3.1683349609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10329, + "target": { + "x": 35.8974609375, + "y": 50.4693603515625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10329, + "sequence": 924, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 292650, + "y": 448561, + "z": 32768 + }, + "snapshotUnitLink": 148, + "snapshotUpkeepPlayerId": 1, + "tag": 68419585, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10331, + "otherUnit": null, + "sequence": 1230, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10333, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10334, + "pitch": null, + "reason": null, + "target": { + "x": 2.2066650390625, + "y": 3.196533203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10334, + "mask": { + "Mask": { + "Count": 11, + "Data": "0x0605" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10336, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10336, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 88604678, + 89391110, + 112984067, + 122683400, + 125566983 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10338, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10338, + "mask": { + "Mask": { + "Count": 11, + "Data": "0x0605" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10340, + "pitch": null, + "reason": null, + "target": { + "x": 2.208740234375, + "y": 3.167724609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10340, + "pitch": null, + "reason": null, + "target": { + "x": 2.207275390625, + "y": 3.23193359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10340, + "otherUnit": null, + "sequence": 925, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10340, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 88604678 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10341, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10342, + "mask": { + "Mask": { + "Count": 11, + "Data": "0x0605" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10344, + "pitch": null, + "reason": null, + "target": { + "x": 2.2177734375, + "y": 3.2218017578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10346, + "pitch": null, + "reason": null, + "target": { + "x": 2.218505859375, + "y": 3.261474609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 101187591 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10346, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 269894, + "y": 418380, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10346, + "otherUnit": null, + "sequence": 1231, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x28" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10346, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10348, + "pitch": null, + "reason": null, + "target": { + "x": 2.208251953125, + "y": 3.2652587890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 268383, + "y": 431624, + "z": 52942 + }, + "snapshotUnitLink": 76, + "snapshotUpkeepPlayerId": 2, + "tag": 121110529, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10349, + "otherUnit": null, + "sequence": 1232, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x18" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10351, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10352, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10353, + "pitch": null, + "reason": null, + "target": { + "x": 2.3433837890625, + "y": 3.1900634765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10355, + "pitch": null, + "reason": null, + "target": { + "x": 2.2093505859375, + "y": 3.298828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10355, + "pitch": null, + "reason": null, + "target": { + "x": 2.3433837890625, + "y": 3.224853515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10355, + "mask": { + "Mask": { + "Count": 11, + "Data": "0x3707" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10356, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 387 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10357, + "otherUnit": null, + "sequence": 1233, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 305152, + "y": 440320, + "z": 32768 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 94896129, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10357, + "otherUnit": null, + "sequence": 1234, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10359, + "pitch": null, + "reason": null, + "target": { + "x": 2.1383056640625, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10360, + "pitch": null, + "reason": null, + "target": { + "x": 2.169677734375, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10360, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10360, + "target": { + "x": 42.0211181640625, + "y": 52.7861328125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10360, + "sequence": 1235, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 293108, + "y": 417206, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10361, + "otherUnit": null, + "sequence": 926, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10364, + "mask": { + "Mask": { + "Count": 33, + "Data": "0xec7b79e501" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10366, + "target": { + "x": 35.8370361328125, + "y": 50.8480224609375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10366, + "sequence": 927, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193, + 109838337 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10367, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10368, + "target": { + "x": 41.50537109375, + "y": 52.08935546875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10368, + "sequence": 1236, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10370, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10371, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10372, + "target": { + "x": 41.3463134765625, + "y": 51.9964599609375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10372, + "sequence": 1237, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10374, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10375, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10377, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 89391110, + 112984067, + 122683400, + 125566983 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10378, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10379, + "otherUnit": null, + "sequence": 928, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10379, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 89391110 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10381, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10381, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x09" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10383, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10385, + "sequence": 929, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10386, + "sequence": 930, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 112984067 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10386, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10386, + "sequence": 931, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10386, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10387, + "sequence": 932, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 122683400, + 125566983 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0c" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10387, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10390, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 302432, + "y": 406713, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10393, + "otherUnit": null, + "sequence": 933, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 285241, + "y": 415854, + "z": 48613 + }, + "snapshotUnitLink": 130, + "snapshotUpkeepPlayerId": 1, + "tag": 114819085, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10394, + "otherUnit": null, + "sequence": 1238, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10400, + "pitch": null, + "reason": null, + "target": { + "x": 2.2459716796875, + "y": 3.283203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10400, + "pitch": null, + "reason": null, + "target": { + "x": 2.20556640625, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10401, + "pitch": null, + "reason": null, + "target": { + "x": 2.243896484375, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 354889, + "y": 428341, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10401, + "otherUnit": null, + "sequence": 1239, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10403, + "pitch": null, + "reason": null, + "target": { + "x": 2.2667236328125, + "y": 3.250244140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10405, + "mask": { + "Mask": { + "Count": 11, + "Data": "0x3707" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10407, + "pitch": null, + "reason": null, + "target": { + "x": 2.250732421875, + "y": 3.2623291015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10407, + "pitch": null, + "reason": null, + "target": { + "x": 2.28466796875, + "y": 3.221435546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361, + 120848385, + 121110529 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10408, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10409, + "pitch": null, + "reason": null, + "target": { + "x": 2.1768798828125, + "y": 3.1212158203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 334450, + "y": 416840, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10409, + "otherUnit": null, + "sequence": 934, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10411, + "pitch": null, + "reason": null, + "target": { + "x": 2.212158203125, + "y": 3.1468505859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10411, + "pitch": null, + "reason": null, + "target": { + "x": 2.2838134765625, + "y": 3.257080078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10411, + "pitch": null, + "reason": null, + "target": { + "x": 2.3116455078125, + "y": 3.197998046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10411, + "mask": { + "Mask": { + "Count": 33, + "Data": "0xec7b79e501" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10411, + "target": { + "x": 44.198486328125, + "y": 53.301025390625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10411, + "sequence": 1240, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10412, + "pitch": null, + "reason": null, + "target": { + "x": 2.28173828125, + "y": 3.2164306640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10412, + "pitch": null, + "reason": null, + "target": { + "x": 2.30419921875, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10412, + "pitch": null, + "reason": null, + "target": { + "x": 2.3529052734375, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10413, + "pitch": null, + "reason": null, + "target": { + "x": 2.316162109375, + "y": 3.2508544921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10413, + "target": { + "x": 41.0045166015625, + "y": 51.0458984375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10413, + "sequence": 935, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10413, + "pitch": null, + "reason": null, + "target": { + "x": 2.4005126953125, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10413, + "target": { + "x": 46.151123046875, + "y": 52.4422607421875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10413, + "sequence": 1242, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10415, + "pitch": null, + "reason": null, + "target": { + "x": 2.340087890625, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10415, + "pitch": null, + "reason": null, + "target": { + "x": 2.3443603515625, + "y": 3.1932373046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10415, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10415, + "pitch": null, + "reason": null, + "target": { + "x": 2.4595947265625, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10416, + "target": { + "x": 41.0126953125, + "y": 51.0458984375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10416, + "sequence": 936, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10418, + "pitch": null, + "reason": null, + "target": { + "x": 2.3189697265625, + "y": 3.2509765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10418, + "pitch": null, + "reason": null, + "target": { + "x": 2.1761474609375, + "y": 3.1412353515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10419, + "pitch": null, + "reason": null, + "target": { + "x": 2.3504638671875, + "y": 3.248779296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10419, + "pitch": null, + "reason": null, + "target": { + "x": 2.3819580078125, + "y": 3.205810546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 130 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 369312, + "y": 433365, + "z": 34064 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10419, + "otherUnit": null, + "sequence": 1244, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10420, + "pitch": null, + "reason": null, + "target": { + "x": 2.4124755859375, + "y": 3.2142333984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10420, + "pitch": null, + "reason": null, + "target": { + "x": 2.2132568359375, + "y": 3.1702880859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10423, + "pitch": null, + "reason": null, + "target": { + "x": 2.383544921875, + "y": 3.24951171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10423, + "pitch": null, + "reason": null, + "target": { + "x": 2.34033203125, + "y": 3.6373291015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 79429638, + 80216068, + 87818243, + 93061123, + 100401155, + 103546884, + 103809027, + 106692611, + 107479043, + 108265474, + 110886914, + 111411202, + 116654082, + 128712707, + 130023426 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10423, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10423, + "pitch": null, + "reason": null, + "target": { + "x": 2.237548828125, + "y": 3.1900634765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10424, + "pitch": null, + "reason": null, + "target": { + "x": 2.2674560546875, + "y": 3.214599609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 10426, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 41.600830078125, + "y": 52.87353515625, + "z": 5.876708984375 + }, + "snapshotUnitLink": 76, + "snapshotUpkeepPlayerId": 2, + "tag": 121110529, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10426, + "sequence": 1245, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10427, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10427, + "pitch": null, + "reason": null, + "target": { + "x": 2.302001953125, + "y": 3.2431640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10429, + "pitch": null, + "reason": null, + "target": { + "x": 2.3291015625, + "y": 3.2657470703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10430, + "pitch": null, + "reason": null, + "target": { + "x": 2.395263671875, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10430, + "pitch": null, + "reason": null, + "target": { + "x": 2.4361572265625, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10430, + "pitch": null, + "reason": null, + "target": { + "x": 2.4224853515625, + "y": 3.250244140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10431, + "pitch": null, + "reason": null, + "target": { + "x": 2.4697265625, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10433, + "pitch": null, + "reason": null, + "target": { + "x": 2.509765625, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10434, + "pitch": null, + "reason": null, + "target": { + "x": 2.5440673828125, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10434, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 317259, + "y": 427018, + "z": 48128 + }, + "snapshotUnitLink": 130, + "snapshotUpkeepPlayerId": 1, + "tag": 114819085, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10434, + "otherUnit": null, + "sequence": 1246, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 284133, + "y": 432036, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10437, + "otherUnit": null, + "sequence": 937, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10437, + "pitch": null, + "reason": null, + "target": { + "x": 2.3682861328125, + "y": 3.275390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10439, + "pitch": null, + "reason": null, + "target": { + "x": 2.402587890625, + "y": 3.275390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 10442, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 34, + "y": 52.75, + "z": 4 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25427969, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10442, + "sequence": 938, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10442, + "pitch": null, + "reason": null, + "target": { + "x": 2.4339599609375, + "y": 3.2752685546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 371217, + "y": 418719, + "z": 41351 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10444, + "otherUnit": null, + "sequence": 1247, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10444, + "pitch": null, + "reason": null, + "target": { + "x": 2.4678955078125, + "y": 3.275146484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10445, + "pitch": null, + "reason": null, + "target": { + "x": 2.4705810546875, + "y": 3.2518310546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10446, + "pitch": null, + "reason": null, + "target": { + "x": 2.5133056640625, + "y": 3.2525634765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10446, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10446, + "pitch": null, + "reason": null, + "target": { + "x": 2.5, + "y": 3.2750244140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10448, + "mask": { + "Mask": { + "Count": 11, + "Data": "0x3707" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10448, + "otherUnit": null, + "sequence": 1248, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10448, + "pitch": null, + "reason": null, + "target": { + "x": 2.5321044921875, + "y": 3.2747802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10449, + "pitch": null, + "reason": null, + "target": { + "x": 2.550048828125, + "y": 3.2518310546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10449, + "pitch": null, + "reason": null, + "target": { + "x": 2.3912353515625, + "y": 3.24169921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10449, + "pitch": null, + "reason": null, + "target": { + "x": 2.5714111328125, + "y": 3.24169921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10450, + "pitch": null, + "reason": null, + "target": { + "x": 2.58154296875, + "y": 3.2518310546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10450, + "pitch": null, + "reason": null, + "target": { + "x": 2.4478759765625, + "y": 3.208251953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10452, + "pitch": null, + "reason": null, + "target": { + "x": 2.485107421875, + "y": 3.2064208984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 369467, + "y": 407656, + "z": 37545 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10452, + "otherUnit": null, + "sequence": 939, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10453, + "pitch": null, + "reason": null, + "target": { + "x": 2.625732421875, + "y": 3.2548828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10453, + "pitch": null, + "reason": null, + "target": { + "x": 2.55078125, + "y": 3.2076416015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10453, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10455, + "pitch": null, + "reason": null, + "target": { + "x": 2.601806640625, + "y": 3.2132568359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10456, + "pitch": null, + "reason": null, + "target": { + "x": 2.674560546875, + "y": 3.2601318359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10457, + "pitch": null, + "reason": null, + "target": { + "x": 2.65576171875, + "y": 3.2255859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10459, + "pitch": null, + "reason": null, + "target": { + "x": 2.708984375, + "y": 3.26611328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10460, + "pitch": null, + "reason": null, + "target": { + "x": 2.691162109375, + "y": 3.2313232421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10461, + "pitch": null, + "reason": null, + "target": { + "x": 2.748779296875, + "y": 3.2735595703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10461, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 327377, + "y": 423877, + "z": 48128 + }, + "snapshotUnitLink": 130, + "snapshotUpkeepPlayerId": 1, + "tag": 76808196, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10461, + "otherUnit": null, + "sequence": 1249, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10467, + "pitch": null, + "reason": null, + "target": { + "x": 2.7862548828125, + "y": 3.278076171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 237 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 327844, + "y": 423173, + "z": 48128 + }, + "snapshotUnitLink": 130, + "snapshotUpkeepPlayerId": 1, + "tag": 76808196, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10467, + "otherUnit": null, + "sequence": 940, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10467, + "pitch": null, + "reason": null, + "target": { + "x": 2.50830078125, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10468, + "pitch": null, + "reason": null, + "target": { + "x": 2.5849609375, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10468, + "pitch": null, + "reason": null, + "target": { + "x": 2.61767578125, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10468, + "pitch": null, + "reason": null, + "target": { + "x": 2.55126953125, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10470, + "pitch": null, + "reason": null, + "target": { + "x": 2.6513671875, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 388293, + "y": 419340, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10471, + "otherUnit": null, + "sequence": 1250, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10472, + "pitch": null, + "reason": null, + "target": { + "x": 2.6849365234375, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10472, + "pitch": null, + "reason": null, + "target": { + "x": 2.8184814453125, + "y": 3.278076171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10474, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10475, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10475, + "pitch": null, + "reason": null, + "target": { + "x": 2.5701904296875, + "y": 3.2747802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10478, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10479, + "pitch": null, + "reason": null, + "target": { + "x": 2.6080322265625, + "y": 3.2747802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10481, + "otherUnit": null, + "sequence": 1251, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10482, + "pitch": null, + "reason": null, + "target": { + "x": 2.6405029296875, + "y": 3.2747802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10483, + "sequence": 1252, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10485, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10486, + "pitch": null, + "reason": null, + "target": { + "x": 2.675048828125, + "y": 3.2747802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 345980, + "y": 429647, + "z": 48297 + }, + "snapshotUnitLink": 130, + "snapshotUpkeepPlayerId": 1, + "tag": 114819085, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10490, + "otherUnit": null, + "sequence": 1253, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 10491, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 41.7984619140625, + "y": 52.0211181640625, + "z": 5.879638671875 + }, + "snapshotUnitLink": 130, + "snapshotUpkeepPlayerId": 1, + "tag": 115867651, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10491, + "sequence": 942, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10496, + "mask": { + "Mask": { + "Count": 11, + "Data": "0x3707" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10496, + "pitch": null, + "reason": null, + "target": { + "x": 2.5965576171875, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10497, + "pitch": null, + "reason": null, + "target": { + "x": 2.640625, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 394978, + "y": 419925, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10498, + "otherUnit": null, + "sequence": 1254, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 373184, + "y": 416508, + "z": 40938 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10500, + "otherUnit": null, + "sequence": 943, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10502, + "pitch": null, + "reason": null, + "target": { + "x": 2.7308349609375, + "y": 3.2301025390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10505, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10505, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10505, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10511, + "pitch": null, + "reason": null, + "target": { + "x": 2.7652587890625, + "y": 3.2373046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10515, + "mask": { + "Mask": { + "Count": 11, + "Data": "0x3707" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 366352, + "y": 421039, + "z": 54109 + }, + "snapshotUnitLink": 130, + "snapshotUpkeepPlayerId": 1, + "tag": 115867651, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10516, + "otherUnit": null, + "sequence": 1255, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10519, + "target": { + "x": 45.350830078125, + "y": 50.29443359375, + "z": 5.0477294921875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10519, + "sequence": 945, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10520, + "pitch": null, + "reason": null, + "target": { + "x": 2.7994384765625, + "y": 3.2408447265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10522, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10523, + "pitch": null, + "reason": null, + "target": { + "x": 2.835205078125, + "y": 3.2403564453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 348977, + "y": 428746, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10523, + "otherUnit": null, + "sequence": 946, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10526, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10527, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10528, + "target": { + "x": 37.078125, + "y": 51.7476806640625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10528, + "sequence": 947, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10528, + "pitch": null, + "reason": null, + "target": { + "x": 2.7125244140625, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10528, + "pitch": null, + "reason": null, + "target": { + "x": 2.7589111328125, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 423684, + "y": 421902, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10530, + "otherUnit": null, + "sequence": 1256, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10531, + "pitch": null, + "reason": null, + "target": { + "x": 2.7464599609375, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10531, + "mask": { + "Mask": { + "Count": 11, + "Data": "0x3707" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10531, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10532, + "pitch": null, + "reason": null, + "target": { + "x": 2.7808837890625, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10532, + "target": { + "x": 38.0123291015625, + "y": 52.1729736328125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10532, + "sequence": 948, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10534, + "pitch": null, + "reason": null, + "target": { + "x": 2.831298828125, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10534, + "pitch": null, + "reason": null, + "target": { + "x": 2.8714599609375, + "y": 3.23486328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10535, + "pitch": null, + "reason": null, + "target": { + "x": 2.8961181640625, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10538, + "pitch": null, + "reason": null, + "target": { + "x": 2.8597412109375, + "y": 3.27587890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10538, + "target": { + "x": 39.5606689453125, + "y": 50.8780517578125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10538, + "sequence": 949, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361, + 120848385, + 121110529 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10538, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10538, + "pitch": null, + "reason": null, + "target": { + "x": 2.8192138671875, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10538, + "target": { + "x": 52.944091796875, + "y": 51.670654296875, + "z": 4.994140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10538, + "sequence": 1257, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10538, + "pitch": null, + "reason": null, + "target": { + "x": 2.7161865234375, + "y": 3.2747802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10539, + "pitch": null, + "reason": null, + "target": { + "x": 2.85400390625, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10541, + "pitch": null, + "reason": null, + "target": { + "x": 2.9010009765625, + "y": 3.273681640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10542, + "pitch": null, + "reason": null, + "target": { + "x": 2.9339599609375, + "y": 3.2706298828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10542, + "pitch": null, + "reason": null, + "target": { + "x": 2.903564453125, + "y": 3.23583984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10542, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10542, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10542, + "pitch": null, + "reason": null, + "target": { + "x": 2.7603759765625, + "y": 3.2747802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10543, + "pitch": null, + "reason": null, + "target": { + "x": 2.79248046875, + "y": 3.2747802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10545, + "pitch": null, + "reason": null, + "target": { + "x": 2.9737548828125, + "y": 3.265380859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10545, + "pitch": null, + "reason": null, + "target": { + "x": 2.8887939453125, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10545, + "pitch": null, + "reason": null, + "target": { + "x": 2.8267822265625, + "y": 3.2747802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10548, + "mask": { + "ZeroIndices": [ + 1 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10548, + "pitch": null, + "reason": null, + "target": { + "x": 2.86572265625, + "y": 3.2747802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10550, + "target": { + "x": 41.2991943359375, + "y": 50.325927734375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10550, + "sequence": 950, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361, + 120848385, + 121110529 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10552, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10552, + "target": { + "x": 54.1529541015625, + "y": 50.6953125, + "z": 4.9942626953125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10552, + "sequence": 1258, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10552, + "pitch": null, + "reason": null, + "target": { + "x": 2.9351806640625, + "y": 3.164794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10553, + "pitch": null, + "reason": null, + "target": { + "x": 2.8465576171875, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10553, + "pitch": null, + "reason": null, + "target": { + "x": 2.811279296875, + "y": 3.2747802734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10553, + "mask": { + "Mask": { + "Count": 33, + "Data": "0xecfb79fd01" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10554, + "target": { + "x": 40.839599609375, + "y": 49.7451171875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10554, + "sequence": 951, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10557, + "pitch": null, + "reason": null, + "target": { + "x": 2.7880859375, + "y": 3.2459716796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10558, + "pitch": null, + "reason": null, + "target": { + "x": 2.7880859375, + "y": 3.2132568359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10558, + "pitch": null, + "reason": null, + "target": { + "x": 2.5714111328125, + "y": 3.090087890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10560, + "pitch": null, + "reason": null, + "target": { + "x": 2.7880859375, + "y": 3.17236328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10560, + "pitch": null, + "reason": null, + "target": { + "x": 2.5714111328125, + "y": 3.0047607421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10560, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10564, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10564, + "target": { + "x": 37.1746826171875, + "y": 47.2220458984375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10564, + "sequence": 952, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 622967, + "y": 311035, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10564, + "otherUnit": null, + "sequence": 1259, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10565, + "pitch": null, + "reason": null, + "target": { + "x": 2.8487548828125, + "y": 3.2099609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10565, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10565, + "pitch": null, + "reason": null, + "target": { + "x": 2.837890625, + "y": 3.2496337890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 106430468, + 112197641, + 114819086 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10567, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10567, + "otherUnit": null, + "sequence": 1260, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10568, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10568, + "pitch": null, + "reason": null, + "target": { + "x": 2.797119140625, + "y": 3.1907958984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10569, + "pitch": null, + "reason": null, + "target": { + "x": 2.7557373046875, + "y": 3.170654296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10569, + "sequence": 1261, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10569, + "pitch": null, + "reason": null, + "target": { + "x": 2.8140869140625, + "y": 3.2154541015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10571, + "pitch": null, + "reason": null, + "target": { + "x": 2.7059326171875, + "y": 3.1302490234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 4, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10571, + "otherUnit": null, + "sequence": 953, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10571, + "pitch": null, + "reason": null, + "target": { + "x": 2.53662109375, + "y": 3.0047607421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109838337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10572, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10572, + "pitch": null, + "reason": null, + "target": { + "x": 2.677734375, + "y": 3.098388671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10572, + "pitch": null, + "reason": null, + "target": { + "x": 2.4512939453125, + "y": 3.0047607421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 106430468 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10572, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10572, + "sequence": 1262, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10574, + "pitch": null, + "reason": null, + "target": { + "x": 2.65576171875, + "y": 3.073486328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10574, + "pitch": null, + "reason": null, + "target": { + "x": 2.7923583984375, + "y": 3.179443359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10575, + "sequence": 954, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 112197641 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10576, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10576, + "sequence": 1263, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10579, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10580, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10580, + "pitch": null, + "reason": null, + "target": { + "x": 1.8819580078125, + "y": 0.8314208984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 78905348, + 94633986, + 99352577, + 114294785 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10580, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 88064, + "y": 452608, + "z": 49104 + }, + "snapshotUnitLink": 122, + "snapshotUpkeepPlayerId": 1, + "tag": 49807361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10582, + "otherUnit": null, + "sequence": 955, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10583, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 282624, + "y": 96256, + "z": 32768 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 6291457, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10583, + "otherUnit": null, + "sequence": 1264, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10584, + "pitch": null, + "reason": null, + "target": { + "x": 2.85693359375, + "y": 3.17236328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10584, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10586, + "pitch": null, + "reason": null, + "target": { + "x": 2.9033203125, + "y": 3.17236328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 10586, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 25.75, + "y": 51.75, + "z": 4.994140625 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 60555265, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10586, + "sequence": 956, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10587, + "pitch": null, + "reason": null, + "target": { + "x": 2.96728515625, + "y": 3.17236328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10587, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10589, + "pitch": null, + "reason": null, + "target": { + "x": 3.0089111328125, + "y": 3.130859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10590, + "pitch": null, + "reason": null, + "target": { + "x": 3.0672607421875, + "y": 3.064453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 10590, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 37.25, + "y": 53.75, + "z": 4 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 94896129, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10590, + "sequence": 957, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10593, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 10593, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 34, + "y": 12.25, + "z": 4 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 7340033, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10593, + "sequence": 1265, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10593, + "pitch": null, + "reason": null, + "target": { + "x": 2.83203125, + "y": 3.1695556640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10594, + "pitch": null, + "reason": null, + "target": { + "x": 2.86376953125, + "y": 3.1595458984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 114819086 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10595, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10595, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 4, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10597, + "otherUnit": null, + "sequence": 958, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10597, + "pitch": null, + "reason": null, + "target": { + "x": 2.90185546875, + "y": 3.143798828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 114819086 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10598, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10598, + "pitch": null, + "reason": null, + "target": { + "x": 2.9410400390625, + "y": 3.1258544921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 82 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 278528, + "y": 108544, + "z": 32768 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 6029313, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10600, + "otherUnit": null, + "sequence": 1266, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 94896129 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10601, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10601, + "pitch": null, + "reason": null, + "target": { + "x": 2.984375, + "y": 3.1051025390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 235 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10602, + "otherUnit": null, + "sequence": 959, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10602, + "pitch": null, + "reason": null, + "target": { + "x": 3.02880859375, + "y": 3.083251953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 10604, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 33.5, + "y": 14.75, + "z": 4 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 6815745, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10604, + "sequence": 1267, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10605, + "pitch": null, + "reason": null, + "target": { + "x": 3.060302734375, + "y": 3.0677490234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10606, + "pitch": null, + "reason": null, + "target": { + "x": 1.8743896484375, + "y": 2.0108642578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10606, + "mask": { + "Mask": { + "Count": 11, + "Data": "0xdf07" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10606, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10608, + "pitch": null, + "reason": null, + "target": { + "x": 2.61474609375, + "y": 3.053955078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10609, + "mask": { + "Mask": { + "Count": 11, + "Data": "0xdf07" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 79429638, + 93061123, + 100401155 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10612, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10613, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 296960, + "y": 468992, + "z": 32768 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 113246209, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10619, + "otherUnit": null, + "sequence": 960, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 62914564, + 110624769 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10621, + "userid": { + "userId": 1 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 176 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10623, + "otherUnit": null, + "sequence": 961, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10628, + "pitch": null, + "reason": null, + "target": { + "x": 3.1185302734375, + "y": 3.056396484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10628, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10630, + "pitch": null, + "reason": null, + "target": { + "x": 3.1529541015625, + "y": 3.056396484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 56623105, + 57933825, + 82313217, + 100663299, + 116391938, + 123469825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10630, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10630, + "otherUnit": null, + "sequence": 1268, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10631, + "pitch": null, + "reason": null, + "target": { + "x": 3.2225341796875, + "y": 3.056396484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10632, + "pitch": null, + "reason": null, + "target": { + "x": 3.264892578125, + "y": 3.056396484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10632, + "pitch": null, + "reason": null, + "target": { + "x": 1.516357421875, + "y": 1.2281494140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 317440, + "y": 468992, + "z": 32768 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 113508353, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10632, + "otherUnit": null, + "sequence": 962, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10634, + "pitch": null, + "reason": null, + "target": { + "x": 3.2977294921875, + "y": 3.056396484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10634, + "sequence": 1269, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10635, + "pitch": null, + "reason": null, + "target": { + "x": 3.3616943359375, + "y": 3.056396484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10635, + "pitch": null, + "reason": null, + "target": { + "x": 3.09375, + "y": 3.062255859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10636, + "pitch": null, + "reason": null, + "target": { + "x": 3.40087890625, + "y": 3.0419921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10638, + "pitch": null, + "reason": null, + "target": { + "x": 3.432861328125, + "y": 3.010009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10638, + "pitch": null, + "reason": null, + "target": { + "x": 3.1341552734375, + "y": 3.0606689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10639, + "pitch": null, + "reason": null, + "target": { + "x": 3.501708984375, + "y": 2.941162109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 10, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 182272, + "y": 141312, + "z": 40931 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10639, + "otherUnit": null, + "sequence": 1270, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10641, + "pitch": null, + "reason": null, + "target": { + "x": 3.5345458984375, + "y": 2.908447265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10641, + "pitch": null, + "reason": null, + "target": { + "x": 1.8743896484375, + "y": 1.9739990234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10641, + "pitch": null, + "reason": null, + "target": { + "x": 3.1727294921875, + "y": 3.0582275390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10642, + "pitch": null, + "reason": null, + "target": { + "x": 3.6048583984375, + "y": 2.869140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10642, + "pitch": null, + "reason": null, + "target": { + "x": 3.21435546875, + "y": 3.050537109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 110886914 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10643, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10645, + "pitch": null, + "reason": null, + "target": { + "x": 1.8720703125, + "y": 1.9215087890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10645, + "pitch": null, + "reason": null, + "target": { + "x": 1.5523681640625, + "y": 1.21435546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10645, + "pitch": null, + "reason": null, + "target": { + "x": 3.2628173828125, + "y": 3.0355224609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10646, + "pitch": null, + "reason": null, + "target": { + "x": 1.8751220703125, + "y": 1.874267578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10646, + "pitch": null, + "reason": null, + "target": { + "x": 1.6031494140625, + "y": 1.197265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10646, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.0040283203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10646, + "pitch": null, + "reason": null, + "target": { + "x": 3.311767578125, + "y": 3.015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10647, + "pitch": null, + "reason": null, + "target": { + "x": 1.878173828125, + "y": 1.83154296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10649, + "pitch": null, + "reason": null, + "target": { + "x": 1.882568359375, + "y": 1.777587890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10649, + "pitch": null, + "reason": null, + "target": { + "x": 1.640869140625, + "y": 1.1883544921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10649, + "pitch": null, + "reason": null, + "target": { + "x": 3.3697509765625, + "y": 2.989013671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10650, + "pitch": null, + "reason": null, + "target": { + "x": 1.887939453125, + "y": 1.7265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10650, + "pitch": null, + "reason": null, + "target": { + "x": 3.4300537109375, + "y": 2.9591064453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10651, + "pitch": null, + "reason": null, + "target": { + "x": 1.887939453125, + "y": 1.695068359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10651, + "pitch": null, + "reason": null, + "target": { + "x": 1.6949462890625, + "y": 1.1873779296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10651, + "pitch": null, + "reason": null, + "target": { + "x": 3.4613037109375, + "y": 2.9432373046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10653, + "pitch": null, + "reason": null, + "target": { + "x": 1.8916015625, + "y": 1.6568603515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10653, + "pitch": null, + "reason": null, + "target": { + "x": 3.4923095703125, + "y": 2.9273681640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10654, + "pitch": null, + "reason": null, + "target": { + "x": 1.8924560546875, + "y": 1.62158203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10654, + "pitch": null, + "reason": null, + "target": { + "x": 1.73388671875, + "y": 1.1912841796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 10654, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 36.25, + "y": 57.25, + "z": 4 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 113246209, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10654, + "sequence": 963, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10654, + "pitch": null, + "reason": null, + "target": { + "x": 3.55126953125, + "y": 2.8968505859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10656, + "pitch": null, + "reason": null, + "target": { + "x": 1.8819580078125, + "y": 1.5638427734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 126353409 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10656, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10656, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10656, + "pitch": null, + "reason": null, + "target": { + "x": 3.5791015625, + "y": 2.8824462890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 10657, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 38.75, + "y": 57.25, + "z": 4 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 113508353, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10657, + "sequence": 964, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10658, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10658, + "pitch": null, + "reason": null, + "target": { + "x": 1.87890625, + "y": 1.5157470703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 10660, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 38.75, + "y": 57.25, + "z": 4 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 113508353, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10660, + "sequence": 965, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10661, + "pitch": null, + "reason": null, + "target": { + "x": 1.886474609375, + "y": 1.4610595703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10662, + "pitch": null, + "reason": null, + "target": { + "x": 1.8917236328125, + "y": 1.40625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109838337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10664, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10664, + "mask": { + "ZeroIndices": [ + 1 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 87293957, + 96468997, + 104071172, + 115605525, + 117702659, + 118226946, + 118751236, + 124518411, + 125829121, + 126091265, + 127401990, + 130285574 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10665, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10667, + "pitch": null, + "reason": null, + "target": { + "x": 3.6417236328125, + "y": 2.869140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10667, + "pitch": null, + "reason": null, + "target": { + "x": 2.5811767578125, + "y": 3.169921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10668, + "pitch": null, + "reason": null, + "target": { + "x": 3.71533203125, + "y": 2.8028564453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10669, + "pitch": null, + "reason": null, + "target": { + "x": 3.747314453125, + "y": 2.770751953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10669, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10669, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10671, + "pitch": null, + "reason": null, + "target": { + "x": 3.782470703125, + "y": 2.735595703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10671, + "mask": { + "ZeroIndices": [ + 1 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 253088, + "y": 169850, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10671, + "otherUnit": null, + "sequence": 1271, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10671, + "pitch": null, + "reason": null, + "target": { + "x": 3.607177734375, + "y": 2.8682861328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10672, + "pitch": null, + "reason": null, + "target": { + "x": 1.887939453125, + "y": 1.4498291015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10673, + "pitch": null, + "reason": null, + "target": { + "x": 1.8848876953125, + "y": 1.4813232421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10673, + "pitch": null, + "reason": null, + "target": { + "x": 1.8736572265625, + "y": 1.5780029296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10673, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10673, + "target": { + "x": 31.2733154296875, + "y": 21.024658203125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10673, + "sequence": 1272, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10675, + "pitch": null, + "reason": null, + "target": { + "x": 2.555908203125, + "y": 3.072021484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10675, + "pitch": null, + "reason": null, + "target": { + "x": 3.6351318359375, + "y": 2.8497314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10676, + "pitch": null, + "reason": null, + "target": { + "x": 1.86767578125, + "y": 1.736328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10676, + "target": { + "x": 33.8516845703125, + "y": 45.480712890625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10676, + "sequence": 966, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10676, + "pitch": null, + "reason": null, + "target": { + "x": 2.429443359375, + "y": 2.970947265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10677, + "pitch": null, + "reason": null, + "target": { + "x": 1.868408203125, + "y": 1.7940673828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10677, + "pitch": null, + "reason": null, + "target": { + "x": 1.8758544921875, + "y": 1.8458251953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10677, + "pitch": null, + "reason": null, + "target": { + "x": 3.6724853515625, + "y": 2.821533203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10679, + "mask": { + "Mask": { + "Count": 33, + "Data": "0xecfb79fd01" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10679, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10679, + "pitch": null, + "reason": null, + "target": { + "x": 3.69921875, + "y": 2.80078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10680, + "pitch": null, + "reason": null, + "target": { + "x": 1.8765869140625, + "y": 1.9095458984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10682, + "pitch": null, + "reason": null, + "target": { + "x": 1.7645263671875, + "y": 1.2071533203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10682, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10682, + "pitch": null, + "reason": null, + "target": { + "x": 3.7274169921875, + "y": 2.7786865234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10683, + "pitch": null, + "reason": null, + "target": { + "x": 1.8773193359375, + "y": 1.976318359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10683, + "pitch": null, + "reason": null, + "target": { + "x": 3.7584228515625, + "y": 2.75439453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10684, + "pitch": null, + "reason": null, + "target": { + "x": 0.796875, + "y": 0.8697509765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10686, + "pitch": null, + "reason": null, + "target": { + "x": 1.7962646484375, + "y": 1.217041015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 50593804, + 53215239, + 65798149, + 71827474, + 72876041, + 79691781, + 93585412, + 115867652, + 119013383, + 122945550, + 126615566, + 127139846 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10687, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10687, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 24, + "abilLink": 152 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10688, + "otherUnit": null, + "sequence": 1273, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10691, + "sequence": 1274, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 128974851, + 129236997 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10693, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10693, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10694, + "mask": { + "Mask": { + "Count": 33, + "Data": "0xecfb79fd01" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10695, + "pitch": null, + "reason": null, + "target": { + "x": 1.82958984375, + "y": 1.2308349609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10695, + "pitch": null, + "reason": null, + "target": { + "x": 2.429443359375, + "y": 2.9140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10695, + "pitch": null, + "reason": null, + "target": { + "x": 1.9022216796875, + "y": 1.23095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10697, + "pitch": null, + "reason": null, + "target": { + "x": 2.429443359375, + "y": 2.838134765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10698, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": 10861, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10699, + "pitch": null, + "reason": null, + "target": { + "x": 1.8775634765625, + "y": 1.237548828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10699, + "target": { + "x": 33.8695068359375, + "y": 45.1190185546875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10699, + "sequence": 967, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10699, + "mask": { + "ZeroIndices": [ + 1 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 8, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + }, + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 96206866, + 110362635, + 115343372, + 120061957, + 125304839, + 127926276, + 128450563, + 129499138, + 109576193, + 109838337, + 82575361, + 120848385, + 121110529, + 68943876 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10701, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10701, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": 9701, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10702, + "pitch": null, + "reason": null, + "target": { + "x": 1.926513671875, + "y": 1.2513427734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10702, + "sequence": 968, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10703, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10705, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 1.1678466796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10706, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10706, + "pitch": null, + "reason": null, + "target": { + "x": 2.375732421875, + "y": 2.8065185546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10706, + "pitch": null, + "reason": null, + "target": { + "x": 1.8577880859375, + "y": 1.009033203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10708, + "pitch": null, + "reason": null, + "target": { + "x": 2.2239990234375, + "y": 2.6549072265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10708, + "pitch": null, + "reason": null, + "target": { + "x": 1.799072265625, + "y": 0.9892578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10709, + "pitch": null, + "reason": null, + "target": { + "x": 1.97509765625, + "y": 1.1875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 90177545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10709, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10709, + "pitch": null, + "reason": null, + "target": { + "x": 2.154541015625, + "y": 2.5853271484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10709, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10709, + "pitch": null, + "reason": null, + "target": { + "x": 1.760009765625, + "y": 1.009033203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 4, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10710, + "otherUnit": null, + "sequence": 969, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10710, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10710, + "pitch": null, + "reason": null, + "target": { + "x": 1.97509765625, + "y": 1.1875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 90177545 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10712, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10712, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10714, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10716, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10717, + "mask": { + "ZeroIndices": [ + 1 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 269127, + "y": 368258, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10717, + "otherUnit": null, + "sequence": 970, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10717, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10720, + "pitch": null, + "reason": null, + "target": { + "x": 1.9307861328125, + "y": 1.16259765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10720, + "pitch": null, + "reason": null, + "target": { + "x": 1.897216796875, + "y": 1.1290283203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10720, + "target": { + "x": 32.928466796875, + "y": 44.813720703125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10720, + "sequence": 971, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10720, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 259502, + "y": 160865, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10720, + "otherUnit": null, + "sequence": 1275, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10721, + "pitch": null, + "reason": null, + "target": { + "x": 1.8612060546875, + "y": 1.093017578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10721, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10723, + "pitch": null, + "reason": null, + "target": { + "x": 1.8251953125, + "y": 1.0570068359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10723, + "target": { + "x": 30.9610595703125, + "y": 19.48388671875, + "z": 4.136474609375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10723, + "sequence": 1276, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10724, + "pitch": null, + "reason": null, + "target": { + "x": 1.7899169921875, + "y": 1.0218505859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10724, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 2, + "unitLink": 159 + } + ], + "addUnitTags": [ + 110100481 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10725, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10725, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10727, + "pitch": null, + "reason": null, + "target": { + "x": 1.9444580078125, + "y": 1.16162109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10728, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 257 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 264192, + "y": 350208, + "z": 32718 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10729, + "otherUnit": null, + "sequence": 972, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10729, + "pitch": null, + "reason": null, + "target": { + "x": 1.9178466796875, + "y": 1.137939453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10732, + "pitch": null, + "reason": null, + "target": { + "x": 1.890625, + "y": 1.1134033203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10734, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10734, + "pitch": null, + "reason": null, + "target": { + "x": 1.8651123046875, + "y": 1.0902099609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10735, + "pitch": null, + "reason": null, + "target": { + "x": 1.8328857421875, + "y": 1.0609130859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10736, + "pitch": null, + "reason": null, + "target": { + "x": 1.7628173828125, + "y": 0.99462890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10736, + "mask": { + "ZeroIndices": [ + 1 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10738, + "pitch": null, + "reason": null, + "target": { + "x": 1.7252197265625, + "y": 0.95703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10738, + "pitch": null, + "reason": null, + "target": { + "x": 1.8026123046875, + "y": 1.033447265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10739, + "pitch": null, + "reason": null, + "target": { + "x": 1.669189453125, + "y": 0.8890380859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10739, + "pitch": null, + "reason": null, + "target": { + "x": 2.154541015625, + "y": 2.4368896484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10739, + "pitch": null, + "reason": null, + "target": { + "x": 2.154541015625, + "y": 2.29150390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10739, + "mask": { + "Mask": { + "Count": 11, + "Data": "0xdf07" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10740, + "pitch": null, + "reason": null, + "target": { + "x": 3.712890625, + "y": 2.79345703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10740, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10740, + "pitch": null, + "reason": null, + "target": { + "x": 2.034423828125, + "y": 2.1461181640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10740, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.80859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10740, + "pitch": null, + "reason": null, + "target": { + "x": 1.779296875, + "y": 1.0118408203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10742, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.06396484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10742, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10743, + "pitch": null, + "reason": null, + "target": { + "x": 1.756591796875, + "y": 0.988525390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10746, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.133544921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10746, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.2535400390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x7d" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10746, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10746, + "pitch": null, + "reason": null, + "target": { + "x": 1.731689453125, + "y": 0.9608154296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10747, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.4178466796875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 115 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10747, + "otherUnit": null, + "sequence": 1277, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 250993, + "y": 361813, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10749, + "otherUnit": null, + "sequence": 973, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10750, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.4937744140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10750, + "sequence": 1278, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10750, + "pitch": null, + "reason": null, + "target": { + "x": 1.7020263671875, + "y": 0.9268798828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10751, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.6485595703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10751, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7540283203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10753, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.7181396484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10753, + "target": { + "x": 31.6025390625, + "y": 47.2552490234375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10753, + "sequence": 974, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10753, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7099609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 5, + "abilLink": 152 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10753, + "otherUnit": null, + "sequence": 1279, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10753, + "pitch": null, + "reason": null, + "target": { + "x": 1.67626953125, + "y": 0.897216796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10755, + "pitch": null, + "reason": null, + "target": { + "x": 3.7322998046875, + "y": 2.760986328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10755, + "sequence": 1280, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10757, + "target": { + "x": 31.1812744140625, + "y": 46.4215087890625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10757, + "sequence": 975, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10758, + "pitch": null, + "reason": null, + "target": { + "x": 1.72119140625, + "y": 0.8778076171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 18, + "unitLink": 43 + } + ], + "addUnitTags": [ + 93847556, + 94109698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10758, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10760, + "pitch": null, + "reason": null, + "target": { + "x": 1.7572021484375, + "y": 0.902587890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10761, + "pitch": null, + "reason": null, + "target": { + "x": 1.8292236328125, + "y": 0.974609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 154 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10761, + "otherUnit": null, + "sequence": 1281, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10762, + "pitch": null, + "reason": null, + "target": { + "x": 1.8643798828125, + "y": 1.0098876953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10762, + "pitch": null, + "reason": null, + "target": { + "x": 3.7320556640625, + "y": 2.7271728515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 7, + "abilLink": 154 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10762, + "otherUnit": null, + "sequence": 1282, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 22, + "Data": "0x71fc1c" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10764, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10766, + "pitch": null, + "reason": null, + "target": { + "x": 1.7080078125, + "y": 0.904052734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10768, + "pitch": null, + "reason": null, + "target": { + "x": 3.7022705078125, + "y": 2.69775390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 67633161, + 101449731, + 107216900 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10768, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10769, + "pitch": null, + "reason": null, + "target": { + "x": 1.737060546875, + "y": 0.9227294921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10771, + "pitch": null, + "reason": null, + "target": { + "x": 1.390625, + "y": 1.078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 89128976 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10771, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10771, + "pitch": null, + "reason": null, + "target": { + "x": 3.6729736328125, + "y": 2.67822265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10771, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10771, + "pitch": null, + "reason": null, + "target": { + "x": 1.7681884765625, + "y": 0.943603515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10772, + "target": { + "x": 32.026123046875, + "y": 43.4852294921875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10772, + "sequence": 976, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10773, + "pitch": null, + "reason": null, + "target": { + "x": 1.9571533203125, + "y": 1.1751708984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10773, + "pitch": null, + "reason": null, + "target": { + "x": 1.8018798828125, + "y": 0.9666748046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10775, + "target": { + "x": 31.490966796875, + "y": 43.1138916015625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10775, + "sequence": 977, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10775, + "pitch": null, + "reason": null, + "target": { + "x": 1.8369140625, + "y": 0.9908447265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10776, + "pitch": null, + "reason": null, + "target": { + "x": 3.6435546875, + "y": 2.6605224609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10777, + "pitch": null, + "reason": null, + "target": { + "x": 1.86279296875, + "y": 1.0087890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10779, + "target": { + "x": 31.0953369140625, + "y": 42.6173095703125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10779, + "sequence": 978, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10781, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10783, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.5316162109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10784, + "pitch": null, + "reason": null, + "target": { + "x": 3.6129150390625, + "y": 2.640380859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10786, + "target": { + "x": 30.1103515625, + "y": 39.329833984375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10786, + "sequence": 979, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10787, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10788, + "target": { + "x": 29.8980712890625, + "y": 39.7281494140625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10788, + "sequence": 980, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10791, + "target": { + "x": 29.60693359375, + "y": 39.3919677734375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10791, + "sequence": 981, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10796, + "pitch": null, + "reason": null, + "target": { + "x": 3.5791015625, + "y": 2.5438232421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10798, + "pitch": null, + "reason": null, + "target": { + "x": 3.5791015625, + "y": 2.5438232421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10799, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10803, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10805, + "target": { + "x": 34.5318603515625, + "y": 44.4971923828125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10805, + "sequence": 982, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 252417, + "y": 190439, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10807, + "otherUnit": null, + "sequence": 1284, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10810, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10813, + "pitch": null, + "reason": null, + "target": { + "x": 3.5518798828125, + "y": 2.5166015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 101449731, + 107216900 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10813, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10813, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10814, + "pitch": null, + "reason": null, + "target": { + "x": 3.5167236328125, + "y": 2.4814453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10814, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10814, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10816, + "pitch": null, + "reason": null, + "target": { + "x": 3.4815673828125, + "y": 2.4461669921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10816, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10817, + "pitch": null, + "reason": null, + "target": { + "x": 3.4119873046875, + "y": 2.3765869140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10817, + "pitch": null, + "reason": null, + "target": { + "x": 3.594970703125, + "y": 2.611572265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 88080388, + 122683401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10817, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10817, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10818, + "pitch": null, + "reason": null, + "target": { + "x": 3.3443603515625, + "y": 2.318603515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10820, + "otherUnit": null, + "sequence": 983, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10820, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10820, + "pitch": null, + "reason": null, + "target": { + "x": 3.403076171875, + "y": 2.318603515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10821, + "pitch": null, + "reason": null, + "target": { + "x": 3.5926513671875, + "y": 2.572509765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 88080388 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10821, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10821, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10821, + "pitch": null, + "reason": null, + "target": { + "x": 3.403076171875, + "y": 2.39794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10821, + "pitch": null, + "reason": null, + "target": { + "x": 3.548095703125, + "y": 2.5128173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10822, + "sequence": 984, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10824, + "pitch": null, + "reason": null, + "target": { + "x": 3.5872802734375, + "y": 2.537841796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 122683401 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10824, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10824, + "pitch": null, + "reason": null, + "target": { + "x": 3.5234375, + "y": 2.488037109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10825, + "pitch": null, + "reason": null, + "target": { + "x": 3.4974365234375, + "y": 2.462158203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10828, + "pitch": null, + "reason": null, + "target": { + "x": 3.5775146484375, + "y": 2.5010986328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10828, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.5791015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10828, + "pitch": null, + "reason": null, + "target": { + "x": 3.466064453125, + "y": 2.4307861328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10829, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.7213134765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361, + 120848385, + 121110529 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10829, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 387 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10829, + "otherUnit": null, + "sequence": 1285, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10829, + "pitch": null, + "reason": null, + "target": { + "x": 3.43798828125, + "y": 2.402587890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10831, + "pitch": null, + "reason": null, + "target": { + "x": 3.5621337890625, + "y": 2.4639892578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10832, + "pitch": null, + "reason": null, + "target": { + "x": 3.413818359375, + "y": 2.37841796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10833, + "pitch": null, + "reason": null, + "target": { + "x": 0.796875, + "y": 0.578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 18, + "unitLink": 43 + } + ], + "addUnitTags": [ + 93847556 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10833, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10833, + "pitch": null, + "reason": null, + "target": { + "x": 3.5462646484375, + "y": 2.436767578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 65798149, + 93585412, + 101187591, + 115867652, + 122945550, + 126615566, + 127139846 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10836, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10838, + "pitch": null, + "reason": null, + "target": { + "x": 3.523681640625, + "y": 2.40869140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 50593804, + 53215239, + 71827474, + 72876041, + 79691781, + 83361796, + 105644045, + 119013383, + 124780550, + 128188421, + 128974851, + 129236997 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10840, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193, + 109838337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10840, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10842, + "pitch": null, + "reason": null, + "target": { + "x": 3.5, + "y": 2.3875732421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 18, + "unitLink": 43 + } + ], + "addUnitTags": [ + 94109698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10844, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10844, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10846, + "pitch": null, + "reason": null, + "target": { + "x": 3.473388671875, + "y": 2.368896484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10847, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.703369140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10848, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.62646484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 65 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10848, + "otherUnit": null, + "sequence": 985, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10848, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.703369140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10850, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.50634765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 50593804 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10850, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 50593804 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10850, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10851, + "pitch": null, + "reason": null, + "target": { + "x": 3.442138671875, + "y": 2.35009765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10851, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10853, + "sequence": 986, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 101449731, + 107216900 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10854, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 53215239 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10854, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10854, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10857, + "pitch": null, + "reason": null, + "target": { + "x": 3.412353515625, + "y": 2.33349609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 241192, + "y": 322041, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10857, + "otherUnit": null, + "sequence": 987, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10859, + "target": { + "x": 29.822509765625, + "y": 38.5386962890625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10859, + "sequence": 988, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10859, + "mask": { + "Mask": { + "Count": 11, + "Data": "0xdf07" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10859, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10862, + "pitch": null, + "reason": null, + "target": { + "x": 3.3800048828125, + "y": 2.3160400390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10862, + "target": { + "x": 29.955322265625, + "y": 38.547119140625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10862, + "sequence": 989, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10862, + "mask": { + "Mask": { + "Count": 11, + "Data": "0xdf07" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10864, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10865, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.6441650390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10865, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.608154296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10865, + "target": { + "x": 29.9017333984375, + "y": 38.6751708984375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10865, + "sequence": 990, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10866, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.572998046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10868, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.53857421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10868, + "pitch": null, + "reason": null, + "target": { + "x": 3.3487548828125, + "y": 2.2994384765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 187 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10869, + "otherUnit": null, + "sequence": 991, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 98304003 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10869, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10870, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.466552734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10870, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.4305419921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10872, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.39697265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10872, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.6201171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 296960, + "y": 88064, + "z": 32768 + }, + "snapshotUnitLink": 344, + "snapshotUpkeepPlayerId": 0, + "tag": 12582913, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10872, + "otherUnit": null, + "sequence": 1288, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10872, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.6663818359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10873, + "pitch": null, + "reason": null, + "target": { + "x": 3.3192138671875, + "y": 2.28369140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10873, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.740234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10874, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 101449731, + 107216900 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10876, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10876, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.6175537109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10877, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.5836181640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10879, + "pitch": null, + "reason": null, + "target": { + "x": 3.2845458984375, + "y": 2.265380859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10879, + "otherUnit": null, + "sequence": 1289, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10880, + "pitch": null, + "reason": null, + "target": { + "x": 3.078369140625, + "y": 2.173828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 17, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 65798149, + 71827474, + 72876041, + 79691781, + 83361796, + 101187591, + 105644045, + 115867652, + 119013383, + 122421260, + 122945550, + 124780550, + 126615566, + 127139846, + 128188421, + 128974851, + 129236997, + 50593804, + 53215239 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10880, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10880, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.5418701171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10881, + "sequence": 1290, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10881, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.49853515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10884, + "pitch": null, + "reason": null, + "target": { + "x": 3.256591796875, + "y": 2.250732421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10884, + "sequence": 1291, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10884, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.457763671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10885, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.4149169921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10887, + "sequence": 1292, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10888, + "pitch": null, + "reason": null, + "target": { + "x": 3.226318359375, + "y": 2.2347412109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10890, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8779296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 67633161 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10892, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10894, + "pitch": null, + "reason": null, + "target": { + "x": 3.1964111328125, + "y": 2.218994140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10898, + "pitch": null, + "reason": null, + "target": { + "x": 3.0460205078125, + "y": 2.161865234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10899, + "pitch": null, + "reason": null, + "target": { + "x": 3.1685791015625, + "y": 2.2042236328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 10, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 23592962, + 74973191, + 88866821, + 93323275, + 93585412, + 100925443, + 106168323, + 123994114, + 125042700, + 127664133 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10899, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10899, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.9498291015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10899, + "pitch": null, + "reason": null, + "target": { + "x": 2.238525390625, + "y": 1.0020751953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10900, + "pitch": null, + "reason": null, + "target": { + "x": 3.0130615234375, + "y": 2.15283203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10900, + "pitch": null, + "reason": null, + "target": { + "x": 2.1898193359375, + "y": 1.05078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10902, + "pitch": null, + "reason": null, + "target": { + "x": 2.1282958984375, + "y": 1.0902099609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 115 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10902, + "otherUnit": null, + "sequence": 1294, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10903, + "pitch": null, + "reason": null, + "target": { + "x": 2.9710693359375, + "y": 2.1416015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10903, + "pitch": null, + "reason": null, + "target": { + "x": 3.138427734375, + "y": 2.1890869140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10903, + "pitch": null, + "reason": null, + "target": { + "x": 2.0679931640625, + "y": 1.0902099609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10906, + "pitch": null, + "reason": null, + "target": { + "x": 2.9388427734375, + "y": 2.1356201171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10906, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10909, + "pitch": null, + "reason": null, + "target": { + "x": 2.9066162109375, + "y": 2.1280517578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10909, + "pitch": null, + "reason": null, + "target": { + "x": 3.1090087890625, + "y": 2.17822265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 76808196 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10911, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10911, + "sequence": 1295, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10913, + "pitch": null, + "reason": null, + "target": { + "x": 2.8682861328125, + "y": 2.1077880859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10914, + "pitch": null, + "reason": null, + "target": { + "x": 3.0733642578125, + "y": 2.17041015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10914, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.8603515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10914, + "pitch": null, + "reason": null, + "target": { + "x": 2.028564453125, + "y": 1.14013671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10914, + "pitch": null, + "reason": null, + "target": { + "x": 1.9786376953125, + "y": 1.18994140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10916, + "mask": { + "ZeroIndices": [ + 1 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10916, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 2.9898681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10916, + "pitch": null, + "reason": null, + "target": { + "x": 1.9229736328125, + "y": 1.24560546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10918, + "pitch": null, + "reason": null, + "target": { + "x": 1.9017333984375, + "y": 3.021484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10918, + "pitch": null, + "reason": null, + "target": { + "x": 1.8905029296875, + "y": 1.2862548828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10918, + "otherUnit": null, + "sequence": 1296, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 10920, + "pitch": null, + "reason": null, + "target": { + "x": 3.0408935546875, + "y": 2.1634521484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 289878, + "y": 404999, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10920, + "otherUnit": null, + "sequence": 992, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10920, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10922, + "pitch": null, + "reason": null, + "target": { + "x": 2.118408203125, + "y": 1.375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10922, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10922, + "target": { + "x": 35.0892333984375, + "y": 48.726806640625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10922, + "sequence": 993, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 236390, + "y": 195432, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10924, + "otherUnit": null, + "sequence": 1297, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10926, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 111935495 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10929, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 254804, + "y": 168132, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10931, + "otherUnit": null, + "sequence": 1298, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10932, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 107216900 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10933, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10933, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 253570, + "y": 168212, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10935, + "otherUnit": null, + "sequence": 1299, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10936, + "pitch": null, + "reason": null, + "target": { + "x": 2.084716796875, + "y": 1.399658203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10937, + "pitch": null, + "reason": null, + "target": { + "x": 2.0357666015625, + "y": 1.4202880859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10939, + "pitch": null, + "reason": null, + "target": { + "x": 1.995361328125, + "y": 1.445556640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 101449731 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10940, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10940, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10941, + "pitch": null, + "reason": null, + "target": { + "x": 1.96826171875, + "y": 1.4661865234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10943, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10944, + "pitch": null, + "reason": null, + "target": { + "x": 1.8905029296875, + "y": 1.3221435546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 210944, + "y": 423936, + "z": 40912 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 60555265, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10946, + "otherUnit": null, + "sequence": 994, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10946, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10947, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10948, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10950, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10950, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10951, + "pitch": null, + "reason": null, + "target": { + "x": 1.9317626953125, + "y": 1.4342041015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10951, + "pitch": null, + "reason": null, + "target": { + "x": 1.920654296875, + "y": 1.402099609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10951, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10954, + "pitch": null, + "reason": null, + "target": { + "x": 1.911376953125, + "y": 1.351318359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 10955, + "target": { + "x": 32.2982177734375, + "y": 22.7904052734375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10955, + "sequence": 1300, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10957, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10958, + "pitch": null, + "reason": null, + "target": { + "x": 1.911865234375, + "y": 1.315673828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10959, + "pitch": null, + "reason": null, + "target": { + "x": 2.1903076171875, + "y": 2.90283203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10959, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10961, + "pitch": null, + "reason": null, + "target": { + "x": 1.8092041015625, + "y": 1.9945068359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 24, + "abilLink": 152 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10961, + "otherUnit": null, + "sequence": 1301, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10961, + "pitch": null, + "reason": null, + "target": { + "x": 2.1903076171875, + "y": 2.90283203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 10962, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 10.75, + "y": 55.25, + "z": 5.994140625 + }, + "snapshotUnitLink": 122, + "snapshotUpkeepPlayerId": 1, + "tag": 49807361, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10962, + "sequence": 995, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10963, + "sequence": 1302, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10966, + "pitch": null, + "reason": null, + "target": { + "x": 0.72216796875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10967, + "pitch": null, + "reason": null, + "target": { + "x": 0.7696533203125, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 112 + } + ], + "addUnitTags": [ + 96731138 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10973, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 115 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10973, + "otherUnit": null, + "sequence": 1303, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10976, + "sequence": 1304, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10980, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 177 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10981, + "otherUnit": null, + "sequence": 996, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10981, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10984, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 2 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 10988, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 153 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10988, + "otherUnit": null, + "sequence": 1305, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10989, + "pitch": null, + "reason": null, + "target": { + "x": 2.29736328125, + "y": 0.8858642578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 10992, + "sequence": 1306, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10993, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10996, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 254872, + "y": 172725, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 10998, + "otherUnit": null, + "sequence": 1307, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10999, + "pitch": null, + "reason": null, + "target": { + "x": 2.3663330078125, + "y": 1.626220703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 10999, + "pitch": null, + "reason": null, + "target": { + "x": 2.2115478515625, + "y": 3.114501953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 10999, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 321624, + "y": 393330, + "z": 33159 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11000, + "otherUnit": null, + "sequence": 997, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11000, + "pitch": null, + "reason": null, + "target": { + "x": 2.3663330078125, + "y": 1.626220703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11003, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11004, + "target": { + "x": 39.3304443359375, + "y": 47.9395751953125, + "z": 4.0477294921875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11004, + "sequence": 998, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11006, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 111935495, + 114032642 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11011, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11011, + "otherUnit": null, + "sequence": 999, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11011, + "pitch": null, + "reason": null, + "target": { + "x": 2.3126220703125, + "y": 3.114501953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11011, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 111935495 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11013, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11014, + "pitch": null, + "reason": null, + "target": { + "x": 2.3359375, + "y": 1.5782470703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 56, + "unitLink": 252 + } + ], + "addUnitTags": [ + 58720257, + 71565324, + 76021762, + 77070339, + 78905348, + 80478209, + 94633986, + 99352577, + 114294785, + 115081217, + 116129795, + 120586246, + 129761285, + 130547715, + 104857604, + 108527637 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11014, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 2 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11014, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11015, + "pitch": null, + "reason": null, + "target": { + "x": 2.295166015625, + "y": 1.5374755859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11017, + "pitch": null, + "reason": null, + "target": { + "x": 2.26318359375, + "y": 1.5054931640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11017, + "sequence": 1000, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 115 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11017, + "otherUnit": null, + "sequence": 1308, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11018, + "pitch": null, + "reason": null, + "target": { + "x": 2.199951171875, + "y": 1.4422607421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11018, + "sequence": 1001, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 114032642 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11018, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11019, + "pitch": null, + "reason": null, + "target": { + "x": 2.1591796875, + "y": 1.4014892578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11019, + "sequence": 1309, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11021, + "pitch": null, + "reason": null, + "target": { + "x": 2.12548828125, + "y": 1.367919921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11021, + "pitch": null, + "reason": null, + "target": { + "x": 2.34326171875, + "y": 1.598388671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11022, + "pitch": null, + "reason": null, + "target": { + "x": 2.060791015625, + "y": 1.3031005859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11022, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 6, + "abilLink": 153 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11022, + "otherUnit": null, + "sequence": 1310, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11024, + "pitch": null, + "reason": null, + "target": { + "x": 2.0511474609375, + "y": 1.2694091796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11025, + "sequence": 1311, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11025, + "pitch": null, + "reason": null, + "target": { + "x": 2.3067626953125, + "y": 1.558837890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 85196801 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11026, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11026, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11026, + "pitch": null, + "reason": null, + "target": { + "x": 2.2723388671875, + "y": 1.522216796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 329728, + "y": 440320, + "z": 32768 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 123731969, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11029, + "otherUnit": null, + "sequence": 1002, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11029, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11029, + "pitch": null, + "reason": null, + "target": { + "x": 2.2364501953125, + "y": 1.4827880859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11030, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11030, + "pitch": null, + "reason": null, + "target": { + "x": 2.198486328125, + "y": 1.43994140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11032, + "pitch": null, + "reason": null, + "target": { + "x": 2.164794921875, + "y": 1.401123046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11033, + "pitch": null, + "reason": null, + "target": { + "x": 2.1424560546875, + "y": 1.3753662109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11035, + "pitch": null, + "reason": null, + "target": { + "x": 2.1212158203125, + "y": 1.350830078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11036, + "pitch": null, + "reason": null, + "target": { + "x": 1.9967041015625, + "y": 1.2054443359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11036, + "pitch": null, + "reason": null, + "target": { + "x": 2.0823974609375, + "y": 1.3056640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11037, + "pitch": null, + "reason": null, + "target": { + "x": 1.9615478515625, + "y": 1.1702880859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11039, + "pitch": null, + "reason": null, + "target": { + "x": 1.925537109375, + "y": 1.13427734375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11039, + "pitch": null, + "reason": null, + "target": { + "x": 2.054931640625, + "y": 1.2738037109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11040, + "pitch": null, + "reason": null, + "target": { + "x": 1.861572265625, + "y": 1.0703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11040, + "pitch": null, + "reason": null, + "target": { + "x": 2.3126220703125, + "y": 3.215576171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11040, + "pitch": null, + "reason": null, + "target": { + "x": 2.3126220703125, + "y": 3.329345703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11041, + "pitch": null, + "reason": null, + "target": { + "x": 1.861572265625, + "y": 1.0343017578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11041, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11041, + "pitch": null, + "reason": null, + "target": { + "x": 2.0250244140625, + "y": 1.2396240234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11044, + "pitch": null, + "reason": null, + "target": { + "x": 1.996337890625, + "y": 1.207275390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11045, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 10, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 87293957, + 96468997, + 118226946, + 118751236, + 124518411, + 125829121, + 126091265, + 126353409, + 127401990, + 130285574 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11045, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11047, + "pitch": null, + "reason": null, + "target": { + "x": 1.744140625, + "y": 1.0977783203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11047, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 277877, + "y": 180798, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11047, + "otherUnit": null, + "sequence": 1315, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11047, + "pitch": null, + "reason": null, + "target": { + "x": 1.9716796875, + "y": 1.1773681640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11048, + "pitch": null, + "reason": null, + "target": { + "x": 1.948974609375, + "y": 1.1485595703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11051, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11051, + "pitch": null, + "reason": null, + "target": { + "x": 1.9228515625, + "y": 1.1146240234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 115343372, + 115605525, + 117702659, + 120061957, + 125304839, + 127926276, + 129499138 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x30" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11052, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11052, + "pitch": null, + "reason": null, + "target": { + "x": 1.8961181640625, + "y": 1.0797119140625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11054, + "target": { + "x": 28.89111328125, + "y": 21.66552734375, + "z": 4.1085205078125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11054, + "sequence": 1316, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11055, + "pitch": null, + "reason": null, + "target": { + "x": 1.818359375, + "y": 1.0343017578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11055, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11055, + "pitch": null, + "reason": null, + "target": { + "x": 1.8721923828125, + "y": 1.0482177734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11058, + "pitch": null, + "reason": null, + "target": { + "x": 1.7503662109375, + "y": 1.0343017578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 52428801, + 52690945, + 57671682, + 58982401 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11058, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 8, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 89391111, + 96206866, + 104071172, + 110362635, + 124518411, + 125566984, + 125829121, + 128450563 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11061, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11062, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11062, + "pitch": null, + "reason": null, + "target": { + "x": 1.8453369140625, + "y": 1.031005859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11065, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11066, + "pitch": null, + "reason": null, + "target": { + "x": 1.8905029296875, + "y": 1.3941650390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11067, + "pitch": null, + "reason": null, + "target": { + "x": 1.8040771484375, + "y": 1.03173828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11070, + "pitch": null, + "reason": null, + "target": { + "x": 1.7642822265625, + "y": 1.0335693359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 278528, + "y": 432128, + "z": 32768 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25427969, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11076, + "otherUnit": null, + "sequence": 1003, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 82575361 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11077, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11078, + "pitch": null, + "reason": null, + "target": { + "x": 1.890625, + "y": 1.3096923828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 120848385, + 121110529 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11080, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11081, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11082, + "pitch": null, + "reason": null, + "target": { + "x": 1.8199462890625, + "y": 1.0343017578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11082, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193, + 109838337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11082, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11084, + "pitch": null, + "reason": null, + "target": { + "x": 1.861572265625, + "y": 1.0758056640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11085, + "pitch": null, + "reason": null, + "target": { + "x": 1.9248046875, + "y": 1.1390380859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11085, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 74711047 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11085, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11085, + "otherUnit": null, + "sequence": 1004, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11085, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11086, + "pitch": null, + "reason": null, + "target": { + "x": 1.960693359375, + "y": 1.175048828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 74711047 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11086, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 266717, + "y": 178277, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11086, + "otherUnit": null, + "sequence": 1317, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11088, + "pitch": null, + "reason": null, + "target": { + "x": 2.0015869140625, + "y": 1.2158203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11089, + "pitch": null, + "reason": null, + "target": { + "x": 2.0711669921875, + "y": 1.2855224609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11091, + "pitch": null, + "reason": null, + "target": { + "x": 2.104736328125, + "y": 1.319091796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 278528, + "y": 432128, + "z": 32768 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25427969, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11091, + "otherUnit": null, + "sequence": 1005, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11091, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11091, + "pitch": null, + "reason": null, + "target": { + "x": 1.79296875, + "y": 1.054931640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11092, + "pitch": null, + "reason": null, + "target": { + "x": 1.8262939453125, + "y": 1.07958984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11093, + "pitch": null, + "reason": null, + "target": { + "x": 1.781982421875, + "y": 1.1292724609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11093, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11095, + "pitch": null, + "reason": null, + "target": { + "x": 1.9228515625, + "y": 1.3209228515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": 9127, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11095, + "pitch": null, + "reason": null, + "target": { + "x": 1.816162109375, + "y": 1.1583251953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11095, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11095, + "pitch": null, + "reason": null, + "target": { + "x": 1.8646240234375, + "y": 1.1104736328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": 9704, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11096, + "pitch": null, + "reason": null, + "target": { + "x": 1.8758544921875, + "y": 1.22314453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11096, + "otherUnit": null, + "sequence": 1318, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11096, + "pitch": null, + "reason": null, + "target": { + "x": 1.9090576171875, + "y": 1.14794921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11097, + "pitch": null, + "reason": null, + "target": { + "x": 1.9573974609375, + "y": 1.336669921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": 10052, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11097, + "pitch": null, + "reason": null, + "target": { + "x": 1.9073486328125, + "y": 1.2630615234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11097, + "sequence": 1319, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": 10334, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11099, + "pitch": null, + "reason": null, + "target": { + "x": 1.9310302734375, + "y": 1.2930908203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11099, + "pitch": null, + "reason": null, + "target": { + "x": 1.95458984375, + "y": 1.1871337890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": 10701, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11100, + "pitch": null, + "reason": null, + "target": { + "x": 1.9544677734375, + "y": 1.3248291015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11100, + "pitch": null, + "reason": null, + "target": { + "x": 1.998291015625, + "y": 1.2254638671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11103, + "pitch": null, + "reason": null, + "target": { + "x": 1.9697265625, + "y": 1.354248046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 77070339, + 80478209 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11103, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11103, + "pitch": null, + "reason": null, + "target": { + "x": 2.0419921875, + "y": 1.263916015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11104, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11104, + "pitch": null, + "reason": null, + "target": { + "x": 2.08447265625, + "y": 1.3011474609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11107, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11110, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 129761285 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11110, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11111, + "pitch": null, + "reason": null, + "target": { + "x": 1.939208984375, + "y": 1.3431396484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 295810, + "y": 143528, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11111, + "otherUnit": null, + "sequence": 1320, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11112, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11114, + "pitch": null, + "reason": null, + "target": { + "x": 1.8743896484375, + "y": 1.308349609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11114, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8756103515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11115, + "pitch": null, + "reason": null, + "target": { + "x": 1.8468017578125, + "y": 1.2828369140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11115, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.9173583984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11117, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11117, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.9730224609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11118, + "pitch": null, + "reason": null, + "target": { + "x": 2.0703125, + "y": 1.30224609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11118, + "pitch": null, + "reason": null, + "target": { + "x": 1.8248291015625, + "y": 1.245361328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11118, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11118, + "otherUnit": null, + "sequence": 1321, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11119, + "pitch": null, + "reason": null, + "target": { + "x": 2.0343017578125, + "y": 1.2662353515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11119, + "pitch": null, + "reason": null, + "target": { + "x": 1.7984619140625, + "y": 1.197998046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11121, + "pitch": null, + "reason": null, + "target": { + "x": 1.998291015625, + "y": 1.230224609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11121, + "pitch": null, + "reason": null, + "target": { + "x": 1.7786865234375, + "y": 1.165283203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11122, + "pitch": null, + "reason": null, + "target": { + "x": 1.9263916015625, + "y": 1.1583251953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 123731969 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11122, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11123, + "pitch": null, + "reason": null, + "target": { + "x": 1.89990234375, + "y": 1.1318359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11123, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11123, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 1.027587890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11125, + "pitch": null, + "reason": null, + "target": { + "x": 1.8511962890625, + "y": 1.0830078125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11125, + "pitch": null, + "reason": null, + "target": { + "x": 1.7657470703125, + "y": 1.1356201171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11125, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11125, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 1.0843505859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11126, + "pitch": null, + "reason": null, + "target": { + "x": 2.181640625, + "y": 1.1806640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11128, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11128, + "pitch": null, + "reason": null, + "target": { + "x": 2.1318359375, + "y": 1.2305908203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11128, + "pitch": null, + "reason": null, + "target": { + "x": 2.0567626953125, + "y": 1.278076171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11129, + "pitch": null, + "reason": null, + "target": { + "x": 2.121337890625, + "y": 1.296630859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11129, + "pitch": null, + "reason": null, + "target": { + "x": 2.0289306640625, + "y": 1.2520751953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11130, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 78118914 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11132, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11132, + "pitch": null, + "reason": null, + "target": { + "x": 1.992919921875, + "y": 1.2181396484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11133, + "otherUnit": null, + "sequence": 1006, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11133, + "sequence": 1322, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 78118914 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11134, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11134, + "sequence": 1323, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11134, + "pitch": null, + "reason": null, + "target": { + "x": 1.9603271484375, + "y": 1.1871337890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11134, + "pitch": null, + "reason": null, + "target": { + "x": 1.9373779296875, + "y": 1.165283203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11136, + "pitch": null, + "reason": null, + "target": { + "x": 1.9027099609375, + "y": 1.1322021484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11137, + "pitch": null, + "reason": null, + "target": { + "x": 1.8414306640625, + "y": 1.141845703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 278528, + "y": 432128, + "z": 32768 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25427969, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11137, + "otherUnit": null, + "sequence": 1007, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11137, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11138, + "pitch": null, + "reason": null, + "target": { + "x": 1.8031005859375, + "y": 1.056640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11138, + "pitch": null, + "reason": null, + "target": { + "x": 1.875, + "y": 1.1422119140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11138, + "pitch": null, + "reason": null, + "target": { + "x": 1.8665771484375, + "y": 1.09765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11140, + "pitch": null, + "reason": null, + "target": { + "x": 1.766357421875, + "y": 1.0198974609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11140, + "pitch": null, + "reason": null, + "target": { + "x": 1.9190673828125, + "y": 1.1424560546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11141, + "pitch": null, + "reason": null, + "target": { + "x": 1.74072265625, + "y": 0.9822998046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11141, + "pitch": null, + "reason": null, + "target": { + "x": 1.9647216796875, + "y": 1.143310546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 120 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 263862, + "y": 179585, + "z": 48395 + }, + "snapshotUnitLink": 726, + "snapshotUpkeepPlayerId": 2, + "tag": 109838337, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11141, + "otherUnit": null, + "sequence": 1324, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 116654082 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11143, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11143, + "pitch": null, + "reason": null, + "target": { + "x": 1.84228515625, + "y": 1.076171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 120 + }, + "cmdFlags": 258, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 269807, + "y": 176850, + "z": 48261 + }, + "snapshotUnitLink": 726, + "snapshotUpkeepPlayerId": 2, + "tag": 109576193, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11145, + "otherUnit": null, + "sequence": 1325, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11147, + "pitch": null, + "reason": null, + "target": { + "x": 1.8172607421875, + "y": 1.0546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11148, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11149, + "pitch": null, + "reason": null, + "target": { + "x": 1.792724609375, + "y": 1.0318603515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 13, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 284672, + "y": 468992, + "z": 32706 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11152, + "otherUnit": null, + "sequence": 1008, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11152, + "pitch": null, + "reason": null, + "target": { + "x": 1.7647705078125, + "y": 1.0052490234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 67371013, + 112984068, + 66584580, + 112459783 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11155, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11156, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11156, + "pitch": null, + "reason": null, + "target": { + "x": 1.74169921875, + "y": 0.9832763671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 80478209, + 129761285 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11159, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11159, + "pitch": null, + "reason": null, + "target": { + "x": 2.4537353515625, + "y": 3.0255126953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 304327, + "y": 388554, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11160, + "otherUnit": null, + "sequence": 1009, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11160, + "otherUnit": null, + "sequence": 1326, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11162, + "pitch": null, + "reason": null, + "target": { + "x": 1.711669921875, + "y": 1.9293212890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11162, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11163, + "target": { + "x": 37.15380859375, + "y": 47.4654541015625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11163, + "sequence": 1010, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11164, + "pitch": null, + "reason": null, + "target": { + "x": 1.795166015625, + "y": 0.9822998046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11164, + "pitch": null, + "reason": null, + "target": { + "x": 1.9857177734375, + "y": 1.17578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11166, + "pitch": null, + "reason": null, + "target": { + "x": 1.8424072265625, + "y": 1.0294189453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11166, + "pitch": null, + "reason": null, + "target": { + "x": 2.0048828125, + "y": 1.2301025390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11167, + "pitch": null, + "reason": null, + "target": { + "x": 1.905517578125, + "y": 1.0926513671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11167, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11169, + "pitch": null, + "reason": null, + "target": { + "x": 1.9439697265625, + "y": 1.131103515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": 10655, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11169, + "pitch": null, + "reason": null, + "target": { + "x": 2.0306396484375, + "y": 1.2655029296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 114819087 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11169, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 114819087 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11169, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11170, + "pitch": null, + "reason": null, + "target": { + "x": 2.0111083984375, + "y": 1.1982421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11170, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11171, + "pitch": null, + "reason": null, + "target": { + "x": 2.0487060546875, + "y": 1.23583984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11171, + "sequence": 1327, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11173, + "pitch": null, + "reason": null, + "target": { + "x": 2.0592041015625, + "y": 1.2718505859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11173, + "pitch": null, + "reason": null, + "target": { + "x": 1.7791748046875, + "y": 1.002685546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 50593805 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11174, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 2, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 50593805 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11174, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11174, + "pitch": null, + "reason": null, + "target": { + "x": 1.81005859375, + "y": 1.0272216796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11175, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11177, + "pitch": null, + "reason": null, + "target": { + "x": 0.779052734375, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11177, + "pitch": null, + "reason": null, + "target": { + "x": 1.8487548828125, + "y": 1.06103515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11178, + "pitch": null, + "reason": null, + "target": { + "x": 0.9371337890625, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11178, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11178, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.6971435546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11178, + "pitch": null, + "reason": null, + "target": { + "x": 1.8868408203125, + "y": 1.09716796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11180, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.6600341796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11181, + "pitch": null, + "reason": null, + "target": { + "x": 1.701904296875, + "y": 1.9608154296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11181, + "pitch": null, + "reason": null, + "target": { + "x": 1.9273681640625, + "y": 1.13720703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11182, + "pitch": null, + "reason": null, + "target": { + "x": 1.70263671875, + "y": 1.9952392578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11182, + "pitch": null, + "reason": null, + "target": { + "x": 1.966552734375, + "y": 1.1768798828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11185, + "pitch": null, + "reason": null, + "target": { + "x": 2.052001953125, + "y": 1.2984619140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 112 + } + ], + "addUnitTags": [ + 97255426 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11185, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11185, + "pitch": null, + "reason": null, + "target": { + "x": 2.0084228515625, + "y": 1.2196044921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 4, + "abilLink": 177 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11186, + "otherUnit": null, + "sequence": 1011, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11186, + "pitch": null, + "reason": null, + "target": { + "x": 2.0438232421875, + "y": 1.256103515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11188, + "pitch": null, + "reason": null, + "target": { + "x": 2.0684814453125, + "y": 1.3419189453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11190, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11190, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.7076416015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11192, + "pitch": null, + "reason": null, + "target": { + "x": 2.0792236328125, + "y": 1.376220703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11193, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 105 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 90112, + "y": 122880, + "z": 49104 + }, + "snapshotUnitLink": 40, + "snapshotUpkeepPlayerId": 2, + "tag": 118489092, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11193, + "otherUnit": null, + "sequence": 1328, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11195, + "pitch": null, + "reason": null, + "target": { + "x": 2.3656005859375, + "y": 2.7838134765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11196, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11196, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11197, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11199, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 314594, + "y": 353749, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11200, + "otherUnit": null, + "sequence": 1012, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11201, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 55574529, + 57147393 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11201, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11203, + "target": { + "x": 38.822509765625, + "y": 43.053466796875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11203, + "sequence": 1013, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 0, + "unitLink": 168 + } + ], + "addUnitTags": [ + 5242881 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11204, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11204, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11214, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11215, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11218, + "pitch": null, + "reason": null, + "target": { + "x": 1.745361328125, + "y": 1.9539794921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 278528, + "y": 100352, + "z": 32768 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 7340033, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11219, + "otherUnit": null, + "sequence": 1329, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11221, + "pitch": null, + "reason": null, + "target": { + "x": 1.794189453125, + "y": 1.8857421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11222, + "pitch": null, + "reason": null, + "target": { + "x": 1.824951171875, + "y": 1.8385009765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11222, + "pitch": null, + "reason": null, + "target": { + "x": 1.8616943359375, + "y": 1.77783203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11225, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11226, + "pitch": null, + "reason": null, + "target": { + "x": 2.3656005859375, + "y": 2.8406982421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11227, + "pitch": null, + "reason": null, + "target": { + "x": 2.2581787109375, + "y": 2.91650390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11227, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11229, + "pitch": null, + "reason": null, + "target": { + "x": 2.2265625, + "y": 2.91650390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11229, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11231, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11233, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11233, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.9298095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11234, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.868408203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11236, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 94371843, + 106430469 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11237, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11238, + "target": { + "x": 37.52685546875, + "y": 47.971435546875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11238, + "sequence": 1014, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11241, + "pitch": null, + "reason": null, + "target": { + "x": 2.1444091796875, + "y": 3.0555419921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11241, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11241, + "pitch": null, + "reason": null, + "target": { + "x": 2.0084228515625, + "y": 3.0555419921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11242, + "pitch": null, + "reason": null, + "target": { + "x": 1.929443359375, + "y": 3.0555419921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11244, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11247, + "otherUnit": null, + "sequence": 1330, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11249, + "sequence": 1331, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11252, + "pitch": null, + "reason": null, + "target": { + "x": 1.815673828125, + "y": 3.0555419921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11252, + "sequence": 1332, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11253, + "pitch": null, + "reason": null, + "target": { + "x": 1.705078125, + "y": 3.0555419921875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 278528, + "y": 108544, + "z": 32768 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 6029313, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11255, + "otherUnit": null, + "sequence": 1333, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11262, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11262, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.854736328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11263, + "pitch": null, + "reason": null, + "target": { + "x": 1.8714599609375, + "y": 1.7342529296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 32, + "unitLink": 108 + } + ], + "addUnitTags": [ + 60555265 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11263, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11263, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11264, + "pitch": null, + "reason": null, + "target": { + "x": 1.88037109375, + "y": 1.6878662109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11264, + "pitch": null, + "reason": null, + "target": { + "x": 2.150390625, + "y": 0.953369140625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11264, + "pitch": null, + "reason": null, + "target": { + "x": 2.1051025390625, + "y": 0.99853515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11266, + "pitch": null, + "reason": null, + "target": { + "x": 1.897705078125, + "y": 1.6405029296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11266, + "pitch": null, + "reason": null, + "target": { + "x": 2.0447998046875, + "y": 1.058837890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11267, + "pitch": null, + "reason": null, + "target": { + "x": 1.917236328125, + "y": 1.602294921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11267, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11268, + "pitch": null, + "reason": null, + "target": { + "x": 1.9359130859375, + "y": 1.5445556640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11268, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11270, + "pitch": null, + "reason": null, + "target": { + "x": 1.947998046875, + "y": 1.5123291015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11271, + "pitch": null, + "reason": null, + "target": { + "x": 1.9637451171875, + "y": 1.4815673828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11273, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109838337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11274, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11278, + "pitch": null, + "reason": null, + "target": { + "x": 2.3624267578125, + "y": 2.6793212890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 69206018, + 112197642, + 77856777, + 119799810 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11278, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11281, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11285, + "pitch": null, + "reason": null, + "target": { + "x": 1.87646484375, + "y": 1.2615966796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11285, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11288, + "pitch": null, + "reason": null, + "target": { + "x": 1.9359130859375, + "y": 1.540771484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11289, + "pitch": null, + "reason": null, + "target": { + "x": 1.92919921875, + "y": 1.61279296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 8, + "Data": "0x8b" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11289, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11290, + "pitch": null, + "reason": null, + "target": { + "x": 1.9306640625, + "y": 1.675048828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11290, + "pitch": null, + "reason": null, + "target": { + "x": 1.9261474609375, + "y": 1.7291259765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11290, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11293, + "pitch": null, + "reason": null, + "target": { + "x": 1.920166015625, + "y": 1.8258056640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": 10714, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11293, + "pitch": null, + "reason": null, + "target": { + "x": 2.4091796875, + "y": 2.684326171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11293, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11294, + "pitch": null, + "reason": null, + "target": { + "x": 1.92236328125, + "y": 1.9510498046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11296, + "pitch": null, + "reason": null, + "target": { + "x": 1.923828125, + "y": 1.9832763671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11296, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11296, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11297, + "pitch": null, + "reason": null, + "target": { + "x": 1.93212890625, + "y": 2.06884765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11297, + "pitch": null, + "reason": null, + "target": { + "x": 2.4339599609375, + "y": 2.6380615234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 371704, + "y": 285029, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11297, + "otherUnit": null, + "sequence": 1015, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11297, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11299, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11300, + "pitch": null, + "reason": null, + "target": { + "x": 1.9395751953125, + "y": 2.1385498046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11300, + "target": { + "x": 48.5037841796875, + "y": 32.8887939453125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11300, + "sequence": 1016, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11301, + "pitch": null, + "reason": null, + "target": { + "x": 1.9486083984375, + "y": 2.2218017578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11301, + "otherUnit": null, + "sequence": 1334, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11303, + "pitch": null, + "reason": null, + "target": { + "x": 1.95751953125, + "y": 2.3253173828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11303, + "pitch": null, + "reason": null, + "target": { + "x": 2.4176025390625, + "y": 2.7225341796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11303, + "target": { + "x": 50.068603515625, + "y": 32.25390625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11303, + "sequence": 1017, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11304, + "pitch": null, + "reason": null, + "target": { + "x": 2.3953857421875, + "y": 2.7647705078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11305, + "pitch": null, + "reason": null, + "target": { + "x": 1.9522705078125, + "y": 2.3883056640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11305, + "pitch": null, + "reason": null, + "target": { + "x": 2.3677978515625, + "y": 2.821533203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11305, + "sequence": 1335, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11307, + "pitch": null, + "reason": null, + "target": { + "x": 2.3555908203125, + "y": 2.8685302734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11307, + "pitch": null, + "reason": null, + "target": { + "x": 2.3834228515625, + "y": 2.6380615234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11308, + "pitch": null, + "reason": null, + "target": { + "x": 2.1748046875, + "y": 2.8497314453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11308, + "sequence": 1336, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11309, + "pitch": null, + "reason": null, + "target": { + "x": 2.3441162109375, + "y": 2.9205322265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11311, + "pitch": null, + "reason": null, + "target": { + "x": 2.33837890625, + "y": 2.9520263671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11312, + "pitch": null, + "reason": null, + "target": { + "x": 2.33154296875, + "y": 3.00390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 340346, + "y": 358692, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11314, + "otherUnit": null, + "sequence": 1018, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11315, + "pitch": null, + "reason": null, + "target": { + "x": 2.32763671875, + "y": 3.03955078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11316, + "pitch": null, + "reason": null, + "target": { + "x": 2.324951171875, + "y": 3.071044921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11318, + "pitch": null, + "reason": null, + "target": { + "x": 1.87646484375, + "y": 1.2152099609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11320, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11323, + "pitch": null, + "reason": null, + "target": { + "x": 2.323486328125, + "y": 3.1041259765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11329, + "target": { + "x": 34.24658203125, + "y": 45.55029296875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11329, + "sequence": 1019, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11329, + "otherUnit": null, + "sequence": 1338, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11330, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11331, + "target": { + "x": 34.4654541015625, + "y": 45.428955078125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11331, + "sequence": 1020, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11334, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11337, + "target": { + "x": 34.4912109375, + "y": 45.23486328125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11337, + "sequence": 1021, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 101449731, + 107216900 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11338, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 16, + 17 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11345, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11345, + "pitch": null, + "reason": null, + "target": { + "x": 2.7967529296875, + "y": 1.8424072265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11346, + "target": { + "x": 39.886474609375, + "y": 44.9617919921875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11346, + "sequence": 1022, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11349, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 364586, + "y": 237589, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11352, + "otherUnit": null, + "sequence": 1339, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11353, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11355, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11357, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11357, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11357, + "pitch": null, + "reason": null, + "target": { + "x": 1.8848876953125, + "y": 1.2674560546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 581944, + "y": 277227, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11359, + "otherUnit": null, + "sequence": 1023, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 15 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11360, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11361, + "pitch": null, + "reason": null, + "target": { + "x": 0.796875, + "y": 0.828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11361, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11363, + "pitch": null, + "reason": null, + "target": { + "x": 2.1748046875, + "y": 2.931884765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11364, + "pitch": null, + "reason": null, + "target": { + "x": 2.1748046875, + "y": 2.9635009765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11364, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11366, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 225324, + "y": 184997, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11366, + "otherUnit": null, + "sequence": 1340, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11368, + "pitch": null, + "reason": null, + "target": { + "x": 1.94775390625, + "y": 2.4273681640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11370, + "pitch": null, + "reason": null, + "target": { + "x": 1.9185791015625, + "y": 2.5247802734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11370, + "pitch": null, + "reason": null, + "target": { + "x": 1.91552734375, + "y": 2.5623779296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 36 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11370, + "otherUnit": null, + "sequence": 1341, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11372, + "pitch": null, + "reason": null, + "target": { + "x": 1.9207763671875, + "y": 2.609619140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 124256259 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11375, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 28, + "unitLink": 69 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 85983233, + 86769665, + 104595459 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11375, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11378, + "pitch": null, + "reason": null, + "target": { + "x": 1.9229736328125, + "y": 2.641845703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": 9890, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11379, + "pitch": null, + "reason": null, + "target": { + "x": 0.8018798828125, + "y": 0.861328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 283339, + "y": 401185, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11381, + "otherUnit": null, + "sequence": 1024, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11382, + "pitch": null, + "reason": null, + "target": { + "x": 1.923828125, + "y": 2.609619140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11383, + "pitch": null, + "reason": null, + "target": { + "x": 1.92529296875, + "y": 2.578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": 9259, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11383, + "pitch": null, + "reason": null, + "target": { + "x": 0.8111572265625, + "y": 0.8958740234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11385, + "pitch": null, + "reason": null, + "target": { + "x": 1.9267578125, + "y": 2.5428466796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11385, + "pitch": null, + "reason": null, + "target": { + "x": 1.9283447265625, + "y": 2.4896240234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11385, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11387, + "pitch": null, + "reason": null, + "target": { + "x": 1.9381103515625, + "y": 2.4378662109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 66846727, + 88080389, + 95420431, + 119275523 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11389, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11390, + "pitch": null, + "reason": null, + "target": { + "x": 1.947021484375, + "y": 2.3643798828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11390, + "pitch": null, + "reason": null, + "target": { + "x": 1.9515380859375, + "y": 2.3021240234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11390, + "target": { + "x": 34.4066162109375, + "y": 47.0960693359375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11390, + "sequence": 1025, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11392, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11393, + "pitch": null, + "reason": null, + "target": { + "x": 1.9583740234375, + "y": 2.176025390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11393, + "target": { + "x": 33.8741455078125, + "y": 47.114013671875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11393, + "sequence": 1026, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + } + ], + "addUnitTags": [ + 121896962, + 122683402 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11393, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11394, + "pitch": null, + "reason": null, + "target": { + "x": 1.9605712890625, + "y": 2.0350341796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11396, + "pitch": null, + "reason": null, + "target": { + "x": 1.96142578125, + "y": 1.9923095703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11396, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11396, + "target": { + "x": 33.7508544921875, + "y": 47.114013671875, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11396, + "sequence": 1027, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 346 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11396, + "otherUnit": null, + "sequence": 1342, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11397, + "pitch": null, + "reason": null, + "target": { + "x": 1.962890625, + "y": 1.9608154296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11398, + "pitch": null, + "reason": null, + "target": { + "x": 1.9666748046875, + "y": 1.9083251953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 1835010, + 61865997, + 90177546, + 116916228, + 117178372, + 130809863, + 131334148 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11398, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11398, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11400, + "pitch": null, + "reason": null, + "target": { + "x": 1.971923828125, + "y": 1.8558349609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11400, + "otherUnit": null, + "sequence": 1028, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11401, + "pitch": null, + "reason": null, + "target": { + "x": 1.98388671875, + "y": 1.7642822265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 1835010 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11401, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11402, + "pitch": null, + "reason": null, + "target": { + "x": 1.983154296875, + "y": 1.7298583984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11402, + "pitch": null, + "reason": null, + "target": { + "x": 2.1748046875, + "y": 2.9951171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11404, + "pitch": null, + "reason": null, + "target": { + "x": 1.9891357421875, + "y": 1.6285400390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11404, + "pitch": null, + "reason": null, + "target": { + "x": 2.1748046875, + "y": 3.1500244140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11405, + "pitch": null, + "reason": null, + "target": { + "x": 1.9981689453125, + "y": 1.51611328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11407, + "pitch": null, + "reason": null, + "target": { + "x": 2.0072021484375, + "y": 1.486083984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11407, + "sequence": 1029, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11407, + "sequence": 1030, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + } + ], + "addUnitTags": [ + 27262978, + 80740356, + 84672514, + 103022594, + 123207686, + 121896962, + 122683402 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11407, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11408, + "pitch": null, + "reason": null, + "target": { + "x": 2.01025390625, + "y": 1.43212890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11408, + "sequence": 1031, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11408, + "sequence": 1032, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 61865997, + 90177546 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11408, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11409, + "pitch": null, + "reason": null, + "target": { + "x": 2.0087890625, + "y": 1.38330078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11409, + "sequence": 1033, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 116916228, + 117178372 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x18" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11409, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11409, + "sequence": 1034, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11409, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11411, + "sequence": 1035, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 130809863, + 131334148 + ], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x60" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11411, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11412, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11415, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 131858433 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11420, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 305152, + "y": 440320, + "z": 32768 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 94896129, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11423, + "otherUnit": null, + "sequence": 1036, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11427, + "pitch": null, + "reason": null, + "target": { + "x": 2.171875, + "y": 3.578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 6, + "unitLink": 119 + } + ], + "addUnitTags": [ + 53215240 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11427, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11427, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11431, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + } + ], + "addUnitTags": [ + 27262978, + 80740356, + 84672514, + 103022594, + 123207686, + 121896962, + 122683402 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11439, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 80216068 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11439, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11444, + "pitch": null, + "reason": null, + "target": { + "x": 2.3043212890625, + "y": 3.279541015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11445, + "pitch": null, + "reason": null, + "target": { + "x": 2.203857421875, + "y": 3.58251953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11446, + "pitch": null, + "reason": null, + "target": { + "x": 2.2459716796875, + "y": 3.5841064453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11446, + "pitch": null, + "reason": null, + "target": { + "x": 2.5982666015625, + "y": 3.5733642578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11446, + "pitch": null, + "reason": null, + "target": { + "x": 2.7498779296875, + "y": 3.5733642578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11446, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11448, + "pitch": null, + "reason": null, + "target": { + "x": 2.8858642578125, + "y": 3.5733642578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11449, + "pitch": null, + "reason": null, + "target": { + "x": 2.2861328125, + "y": 3.5855712890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11449, + "pitch": null, + "reason": null, + "target": { + "x": 2.9364013671875, + "y": 3.5733642578125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11450, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11453, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 415780, + "y": 466241, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11454, + "otherUnit": null, + "sequence": 1038, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11456, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11457, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11460, + "pitch": null, + "reason": null, + "target": { + "x": 2.316162109375, + "y": 3.5711669921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11460, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11463, + "pitch": null, + "reason": null, + "target": { + "x": 2.3394775390625, + "y": 3.52587890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11464, + "pitch": null, + "reason": null, + "target": { + "x": 2.353271484375, + "y": 3.4853515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11467, + "pitch": null, + "reason": null, + "target": { + "x": 2.36083984375, + "y": 3.451171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11471, + "pitch": null, + "reason": null, + "target": { + "x": 2.3656005859375, + "y": 3.419921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 5, + "abilLink": 152 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11471, + "otherUnit": null, + "sequence": 1343, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11474, + "sequence": 1344, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11475, + "pitch": null, + "reason": null, + "target": { + "x": 2.3656005859375, + "y": 3.38427734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11478, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11480, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11482, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11482, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11483, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11486, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11486, + "otherUnit": null, + "sequence": 1345, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11487, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11490, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 73924613 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11495, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11497, + "pitch": null, + "reason": null, + "target": { + "x": 3.8592529296875, + "y": 2.5162353515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11498, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 83099656, + 118751236 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11498, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11502, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11502, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 30, + "unitLink": 122 + } + ], + "addUnitTags": [ + 49807361 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11506, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193, + 109838337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11506, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11508, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11511, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11512, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 86245378 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11513, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11515, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11516, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 53739524 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11517, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11519, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 77070339, + 80478209, + 129761285 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11519, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 120 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 269807, + "y": 176850, + "z": 48261 + }, + "snapshotUnitLink": 726, + "snapshotUpkeepPlayerId": 2, + "tag": 109576193, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11521, + "otherUnit": null, + "sequence": 1346, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11523, + "target": { + "x": 34.4090576171875, + "y": 53.70947265625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11523, + "sequence": 1039, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11527, + "target": { + "x": 33.86376953125, + "y": 53.21240234375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11527, + "sequence": 1040, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11527, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 11530, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 34, + "y": 52.75, + "z": 4 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25427969, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11530, + "sequence": 1041, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 52428801, + 57671682, + 103809027, + 106692611, + 114032643 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11534, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 266, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 278528, + "y": 108544, + "z": 32768 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 6029313, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11534, + "otherUnit": null, + "sequence": 1347, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11537, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11537, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11538, + "pitch": null, + "reason": null, + "target": { + "x": 2.4039306640625, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11539, + "pitch": null, + "reason": null, + "target": { + "x": 2.54931640625, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11541, + "pitch": null, + "reason": null, + "target": { + "x": 2.69140625, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 114294785, + 133431297 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11541, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11542, + "pitch": null, + "reason": null, + "target": { + "x": 2.9537353515625, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11543, + "pitch": null, + "reason": null, + "target": { + "x": 3.0927734375, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11543, + "otherUnit": null, + "sequence": 1348, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11545, + "pitch": null, + "reason": null, + "target": { + "x": 3.1876220703125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 296960, + "y": 88064, + "z": 32768 + }, + "snapshotUnitLink": 41, + "snapshotUpkeepPlayerId": 2, + "tag": 126877699, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11545, + "otherUnit": null, + "sequence": 1349, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11547, + "otherUnit": null, + "sequence": 1350, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11549, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 11550, + "pitch": null, + "reason": null, + "target": { + "x": 2.336181640625, + "y": 3.3958740234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 11554, + "pitch": null, + "reason": null, + "target": { + "x": 2.314697265625, + "y": 3.4195556640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11556, + "pitch": null, + "reason": null, + "target": { + "x": 3.1876220703125, + "y": 3.4376220703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 11557, + "pitch": null, + "reason": null, + "target": { + "x": 2.2904052734375, + "y": 3.446533203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 11560, + "pitch": null, + "reason": null, + "target": { + "x": 2.26220703125, + "y": 3.477783203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11560, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": true, + "id": 49, + "loop": 11563, + "pitch": null, + "reason": null, + "target": { + "x": 2.236083984375, + "y": 3.506591796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 22, + "unitLink": 48 + } + ], + "addUnitTags": [ + 89128976 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11564, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11565, + "pitch": null, + "reason": null, + "target": { + "x": 1.6302490234375, + "y": 0.91845703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11568, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 175 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 419840, + "y": 460800, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11571, + "otherUnit": null, + "sequence": 1042, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11571, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11575, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 115081217 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11576, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11578, + "sequence": 1351, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 131858433, + 80216068 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11580, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11580, + "sequence": 1352, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11582, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8511962890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11583, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.891845703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 281210, + "y": 423781, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11589, + "otherUnit": null, + "sequence": 1043, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11593, + "pitch": null, + "reason": null, + "target": { + "x": 1.6036376953125, + "y": 0.9495849609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 11593, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 34.5, + "y": 51.25, + "z": 4 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25165825, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11593, + "sequence": 1044, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 56, + "unitLink": 252 + } + ], + "addUnitTags": [ + 55574529, + 57147393, + 58720257, + 99352577, + 116129795, + 120586246, + 108527637 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11593, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11594, + "pitch": null, + "reason": null, + "target": { + "x": 1.57275390625, + "y": 0.9820556640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11597, + "pitch": null, + "reason": null, + "target": { + "x": 1.5328369140625, + "y": 1.0228271484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11597, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11599, + "pitch": null, + "reason": null, + "target": { + "x": 1.495849609375, + "y": 1.05224609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11599, + "pitch": null, + "reason": null, + "target": { + "x": 2.1240234375, + "y": 2.941162109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11602, + "pitch": null, + "reason": null, + "target": { + "x": 1.457763671875, + "y": 1.073486328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11605, + "pitch": null, + "reason": null, + "target": { + "x": 1.416748046875, + "y": 1.0855712890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 121 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 327680, + "y": 147456, + "z": 32720 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11605, + "otherUnit": null, + "sequence": 1353, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11606, + "pitch": null, + "reason": null, + "target": { + "x": 1.352783203125, + "y": 1.08251953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11608, + "pitch": null, + "reason": null, + "target": { + "x": 1.320068359375, + "y": 1.0767822265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11609, + "pitch": null, + "reason": null, + "target": { + "x": 1.2325439453125, + "y": 1.05126953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11612, + "pitch": null, + "reason": null, + "target": { + "x": 1.18115234375, + "y": 1.0333251953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 28049410, + 74711048, + 131072004, + 131596291 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11612, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11612, + "target": { + "x": 41, + "y": 18, + "z": 3.994140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11612, + "sequence": 1354, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11613, + "pitch": null, + "reason": null, + "target": { + "x": 1.1448974609375, + "y": 1.02099609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11616, + "pitch": null, + "reason": null, + "target": { + "x": 1.116455078125, + "y": 1.0069580078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 266, + "data": { + "TargetPoint": { + "x": 290280, + "y": 384184, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11616, + "otherUnit": null, + "sequence": 1045, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11616, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11616, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11617, + "pitch": null, + "reason": null, + "target": { + "x": 1.087890625, + "y": 0.9915771484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11619, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 19, + "Data": "0xefdd07" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11621, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11621, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 65 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11624, + "otherUnit": null, + "sequence": 1046, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 28049410 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11625, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 28049410 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11625, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11625, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11628, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11631, + "sequence": 1047, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11631, + "sequence": 1048, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11631, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 24, + "unitLink": 42 + } + ], + "addUnitTags": [ + 109051906 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11632, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 74711048, + 131072004 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11632, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 74711048, + 131072004 + ], + "removeMask": { + "OneIndices": [ + 4, + 17 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11632, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11632, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11632, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11634, + "pitch": null, + "reason": null, + "target": { + "x": 2.34619140625, + "y": 0.91845703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11635, + "pitch": null, + "reason": null, + "target": { + "x": 4.42431640625, + "y": 2.074462890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11635, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 481952, + "y": 139394, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11636, + "otherUnit": null, + "sequence": 1049, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11636, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 20, + "unitLink": 49 + } + ], + "addUnitTags": [ + 69730307 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11639, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11639, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 55050241, + 65273859 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11639, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11640, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11642, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 65792, + "data": { + "TargetPoint": { + "x": 410162, + "y": 144595, + "z": 40911 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11646, + "otherUnit": null, + "sequence": 1050, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11649, + "target": { + "x": 48.8167724609375, + "y": 17.6507568359375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11649, + "sequence": 1051, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11650, + "pitch": null, + "reason": null, + "target": { + "x": 1.0650634765625, + "y": 0.964599609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11650, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11651, + "target": { + "x": 48.1907958984375, + "y": 17.333251953125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11651, + "sequence": 1052, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11653, + "pitch": null, + "reason": null, + "target": { + "x": 1.03955078125, + "y": 0.9217529296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11654, + "pitch": null, + "reason": null, + "target": { + "x": 2.3192138671875, + "y": 0.890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11657, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 278528, + "y": 100352, + "z": 32768 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 7340033, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11657, + "otherUnit": null, + "sequence": 1355, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11660, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11661, + "pitch": null, + "reason": null, + "target": { + "x": 2.2130126953125, + "y": 2.9024658203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11661, + "otherUnit": null, + "sequence": 1356, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11662, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11664, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11664, + "sequence": 1357, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11666, + "sequence": 1358, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11668, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11669, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11669, + "sequence": 1359, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 267733, + "y": 378475, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11671, + "otherUnit": null, + "sequence": 1053, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11671, + "pitch": null, + "reason": null, + "target": { + "x": 2.2049560546875, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11672, + "pitch": null, + "reason": null, + "target": { + "x": 2.102783203125, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11673, + "pitch": null, + "reason": null, + "target": { + "x": 2.04833984375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11675, + "pitch": null, + "reason": null, + "target": { + "x": 1.9891357421875, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11676, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11679, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11682, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11683, + "pitch": null, + "reason": null, + "target": { + "x": 1.96240234375, + "y": 0.8558349609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11684, + "pitch": null, + "reason": null, + "target": { + "x": 1.911376953125, + "y": 0.9068603515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11686, + "pitch": null, + "reason": null, + "target": { + "x": 2.34912109375, + "y": 0.90869140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11686, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11687, + "pitch": null, + "reason": null, + "target": { + "x": 2.38671875, + "y": 0.9378662109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11687, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 3.398681640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11688, + "pitch": null, + "reason": null, + "target": { + "x": 1.939453125, + "y": 1.13037109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11690, + "pitch": null, + "reason": null, + "target": { + "x": 2.4271240234375, + "y": 0.9716796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11691, + "pitch": null, + "reason": null, + "target": { + "x": 2.47216796875, + "y": 1.0107421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11694, + "pitch": null, + "reason": null, + "target": { + "x": 2.505126953125, + "y": 1.0361328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 105 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 253952, + "y": 110592, + "z": 40976 + }, + "snapshotUnitLink": 40, + "snapshotUpkeepPlayerId": 2, + "tag": 87556105, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11694, + "otherUnit": null, + "sequence": 1362, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 50855937, + 52953089, + 58195969, + 73662467 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11695, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11697, + "pitch": null, + "reason": null, + "target": { + "x": 2.5306396484375, + "y": 1.056396484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11697, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11697, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x05" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11702, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11702, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 0.970703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11703, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11703, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.018310546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": 9130, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11705, + "pitch": null, + "reason": null, + "target": { + "x": 1.96826171875, + "y": 1.1708984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11705, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.07861328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": 8955, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11706, + "pitch": null, + "reason": null, + "target": { + "x": 1.98828125, + "y": 1.20263671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11706, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.16796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11709, + "pitch": null, + "reason": null, + "target": { + "x": 2.0098876953125, + "y": 1.234130859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11709, + "otherUnit": null, + "sequence": 1365, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11710, + "pitch": null, + "reason": null, + "target": { + "x": 2.03515625, + "y": 1.2740478515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11713, + "pitch": null, + "reason": null, + "target": { + "x": 2.0555419921875, + "y": 1.3076171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11713, + "target": { + "x": 33.733642578125, + "y": 55.3919677734375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11713, + "sequence": 1054, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11713, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11714, + "pitch": null, + "reason": null, + "target": { + "x": 2.070556640625, + "y": 1.3388671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 11718, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 34, + "y": 54.75, + "z": 4 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25690113, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11718, + "sequence": 1055, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 16 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11720, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 112984068, + 132120577, + 132382721, + 132907009 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11723, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + } + ], + "addUnitTags": [ + 68419585 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11725, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 329728, + "y": 440320, + "z": 32768 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 123731969, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11728, + "otherUnit": null, + "sequence": 1056, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11729, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 73 + } + ], + "addUnitTags": [ + 111935496 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11731, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11734, + "pitch": null, + "reason": null, + "target": { + "x": 2.078369140625, + "y": 2.871337890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11734, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193, + 109838337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11735, + "userid": { + "userId": 2 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 244029, + "y": 367050, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11736, + "otherUnit": null, + "sequence": 1057, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11739, + "pitch": null, + "reason": null, + "target": { + "x": 2.0045166015625, + "y": 1.277099609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11739, + "pitch": null, + "reason": null, + "target": { + "x": 2.078369140625, + "y": 2.8114013671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 43, + "Data": "0xffd5fb3f2f03" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11739, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11740, + "pitch": null, + "reason": null, + "target": { + "x": 2.078369140625, + "y": 2.6533203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 123 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11740, + "otherUnit": null, + "sequence": 1366, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11742, + "pitch": null, + "reason": null, + "target": { + "x": 2.078369140625, + "y": 2.5269775390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 240008, + "y": 203458, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11742, + "otherUnit": null, + "sequence": 1367, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11743, + "pitch": null, + "reason": null, + "target": { + "x": 2.078369140625, + "y": 2.2457275390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11743, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.200439453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11743, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.2548828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11744, + "pitch": null, + "reason": null, + "target": { + "x": 2.078369140625, + "y": 2.1224365234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11744, + "target": { + "x": 29.0345458984375, + "y": 27.2005615234375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11744, + "sequence": 1368, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11744, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.305908203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11746, + "pitch": null, + "reason": null, + "target": { + "x": 2.078369140625, + "y": 1.9676513671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11746, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.3697509765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11747, + "pitch": null, + "reason": null, + "target": { + "x": 2.078369140625, + "y": 1.82861328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11747, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.4578857421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11749, + "target": { + "x": 30.4227294921875, + "y": 26.9031982421875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11749, + "sequence": 1058, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 238695, + "y": 248198, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11749, + "otherUnit": null, + "sequence": 1369, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11749, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.5147705078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11751, + "pitch": null, + "reason": null, + "target": { + "x": 2.078369140625, + "y": 1.705322265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11751, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11753, + "pitch": null, + "reason": null, + "target": { + "x": 2.078369140625, + "y": 1.5537109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11754, + "pitch": null, + "reason": null, + "target": { + "x": 2.078369140625, + "y": 1.2945556640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11755, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11757, + "target": { + "x": 31.5360107421875, + "y": 19.334228515625, + "z": 4.0391845703125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11757, + "sequence": 1059, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11760, + "pitch": null, + "reason": null, + "target": { + "x": 3.3060302734375, + "y": 1.5543212890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11760, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11761, + "pitch": null, + "reason": null, + "target": { + "x": 1.9180908203125, + "y": 2.698974609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11761, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11764, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11766, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11768, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11769, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11770, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11772, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11773, + "target": { + "x": 33.7830810546875, + "y": 44.0413818359375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11773, + "sequence": 1060, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11773, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11773, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11776, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11777, + "pitch": null, + "reason": null, + "target": { + "x": 3.293212890625, + "y": 1.588134765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11779, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11780, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11783, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11783, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.5855712890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11784, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 135266307, + 137887746 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11784, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 135266307, + 137887746 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11784, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11784, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.67138671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11784, + "otherUnit": null, + "sequence": 1370, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": 10494, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11785, + "pitch": null, + "reason": null, + "target": { + "x": 3.25, + "y": 1.5899658203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11785, + "target": { + "x": 36.3759765625, + "y": 44.7001953125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11785, + "sequence": 1061, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11785, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.7293701171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": 10691, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11787, + "pitch": null, + "reason": null, + "target": { + "x": 3.2049560546875, + "y": 1.576171875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11787, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.7919921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11787, + "sequence": 1371, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": 10886, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11788, + "pitch": null, + "reason": null, + "target": { + "x": 3.155517578125, + "y": 1.5599365234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11788, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11788, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.884765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11790, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.9334716796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11790, + "sequence": 1372, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 1835011, + 138674178, + 138936321, + 139198465 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x22" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11791, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 1835011, + 138674178, + 138936321, + 139198465 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x22" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11791, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11791, + "pitch": null, + "reason": null, + "target": { + "x": 1.8974609375, + "y": 1.9892578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11792, + "pitch": null, + "reason": null, + "target": { + "x": 2.328125, + "y": 3.304931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 139460609, + 139722753, + 139984897, + 140247041 + ], + "removeMask": { + "Mask": { + "Count": 11, + "Data": "0x0600" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11792, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 139460609, + 139722753, + 139984897, + 140247041 + ], + "removeMask": { + "Mask": { + "Count": 11, + "Data": "0x0600" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11792, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 90177547, + 140509185, + 140771329, + 141033473 + ], + "removeMask": { + "Mask": { + "Count": 14, + "Data": "0x0a00" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11794, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 90177547, + 140509185, + 140771329, + 141033473 + ], + "removeMask": { + "Mask": { + "Count": 14, + "Data": "0x0a00" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11794, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11795, + "pitch": null, + "reason": null, + "target": { + "x": 3.11083984375, + "y": 1.547119140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11795, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11798, + "pitch": null, + "reason": null, + "target": { + "x": 3.0787353515625, + "y": 1.5399169921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 23330818, + 61865998, + 78118915, + 132644865, + 133955585, + 135004161, + 135528449, + 135790594, + 136314881, + 136577026, + 137625601, + 138149889, + 138412033 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11798, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11798, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11801, + "otherUnit": null, + "sequence": 1062, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 23330818 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11802, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 224483, + "y": 277521, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11802, + "otherUnit": null, + "sequence": 1374, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11805, + "sequence": 1063, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11805, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 61865998 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11806, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11806, + "target": { + "x": 27.394775390625, + "y": 33.8668212890625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11806, + "sequence": 1375, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11807, + "sequence": 1064, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 78118915 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11809, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11809, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11810, + "sequence": 1065, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 132644865 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11811, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 265945, + "y": 466432, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11811, + "otherUnit": null, + "sequence": 1066, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11813, + "target": { + "x": 27.3028564453125, + "y": 33.6116943359375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11813, + "sequence": 1376, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11814, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11816, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11817, + "pitch": null, + "reason": null, + "target": { + "x": 3.0322265625, + "y": 1.523681640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11817, + "target": { + "x": 27.352294921875, + "y": 33.6116943359375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11817, + "sequence": 1377, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11818, + "pitch": null, + "reason": null, + "target": { + "x": 2.996826171875, + "y": 1.497314453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11818, + "pitch": null, + "reason": null, + "target": { + "x": 2.25, + "y": 2.851806640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11820, + "target": { + "x": 30.3306884765625, + "y": 46.3428955078125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11820, + "sequence": 1067, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11820, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11821, + "pitch": null, + "reason": null, + "target": { + "x": 2.9649658203125, + "y": 1.4619140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11822, + "pitch": null, + "reason": null, + "target": { + "x": 2.2183837890625, + "y": 2.8203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11822, + "target": { + "x": 26.753173828125, + "y": 33.664306640625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11822, + "sequence": 1378, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11824, + "pitch": null, + "reason": null, + "target": { + "x": 2.9334716796875, + "y": 1.422607421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11824, + "pitch": null, + "reason": null, + "target": { + "x": 2.0509033203125, + "y": 2.65283203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11825, + "pitch": null, + "reason": null, + "target": { + "x": 2.8890380859375, + "y": 1.380859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11825, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.4000244140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11825, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11827, + "pitch": null, + "reason": null, + "target": { + "x": 2.858154296875, + "y": 1.355712890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11827, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.23876953125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11827, + "target": { + "x": 26.8271484375, + "y": 33.5909423828125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11827, + "sequence": 1379, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11828, + "pitch": null, + "reason": null, + "target": { + "x": 2.791015625, + "y": 1.2987060546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11828, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 1.9765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11829, + "pitch": null, + "reason": null, + "target": { + "x": 2.7540283203125, + "y": 1.2584228515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11829, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11831, + "pitch": null, + "reason": null, + "target": { + "x": 2.733642578125, + "y": 1.2344970703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11832, + "pitch": null, + "reason": null, + "target": { + "x": 2.6947021484375, + "y": 1.185302734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11833, + "target": { + "x": 26.4727783203125, + "y": 33.3818359375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11833, + "sequence": 1380, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11835, + "pitch": null, + "reason": null, + "target": { + "x": 1.9932861328125, + "y": 1.3228759765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11835, + "pitch": null, + "reason": null, + "target": { + "x": 2.657470703125, + "y": 1.1466064453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11836, + "pitch": null, + "reason": null, + "target": { + "x": 2.6160888671875, + "y": 1.108154296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11837, + "pitch": null, + "reason": null, + "target": { + "x": 1.9827880859375, + "y": 1.3746337890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11839, + "pitch": null, + "reason": null, + "target": { + "x": 2.5743408203125, + "y": 1.0751953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11840, + "pitch": null, + "reason": null, + "target": { + "x": 1.9766845703125, + "y": 1.4188232421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11840, + "pitch": null, + "reason": null, + "target": { + "x": 2.5521240234375, + "y": 1.052734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 62914564, + 110624769 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11840, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 21 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11840, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11844, + "pitch": null, + "reason": null, + "target": { + "x": 2.52783203125, + "y": 1.0233154296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11844, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11846, + "pitch": null, + "reason": null, + "target": { + "x": 1.9737548828125, + "y": 1.4578857421875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11846, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11847, + "pitch": null, + "reason": null, + "target": { + "x": 1.9654541015625, + "y": 1.4893798828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11847, + "pitch": null, + "reason": null, + "target": { + "x": 2.5059814453125, + "y": 1.000732421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11847, + "target": { + "x": 28.6505126953125, + "y": 38.62890625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11847, + "sequence": 1068, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11848, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.140869140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11848, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.2830810546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11850, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.362060546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11850, + "target": { + "x": 28.6807861328125, + "y": 43.0482177734375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11850, + "sequence": 1069, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11851, + "pitch": null, + "reason": null, + "target": { + "x": 1.9542236328125, + "y": 1.524658203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11853, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.5042724609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11854, + "pitch": null, + "reason": null, + "target": { + "x": 1.9451904296875, + "y": 1.5576171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11854, + "target": { + "x": 28.97412109375, + "y": 47.6414794921875, + "z": 4.41455078125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11854, + "sequence": 1070, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11854, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.6717529296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 65792, + "data": { + "TargetPoint": { + "x": 284531, + "y": 383853, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11855, + "otherUnit": null, + "sequence": 1381, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11858, + "pitch": null, + "reason": null, + "target": { + "x": 1.9339599609375, + "y": 1.600341796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11858, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11859, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11859, + "target": { + "x": 33.4808349609375, + "y": 43.047607421875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11859, + "sequence": 1382, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11861, + "pitch": null, + "reason": null, + "target": { + "x": 1.9249267578125, + "y": 1.6475830078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11862, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.5390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11862, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.477294921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11863, + "pitch": null, + "reason": null, + "target": { + "x": 1.9189453125, + "y": 1.6783447265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11863, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.4189453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 9, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 133955585, + 135004161, + 135528449, + 135790594, + 136314881, + 136577026, + 137625601, + 138149889, + 138412033 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11863, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11865, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.25146484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11865, + "otherUnit": null, + "sequence": 1071, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11865, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11866, + "pitch": null, + "reason": null, + "target": { + "x": 1.9122314453125, + "y": 1.713623046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 133955585 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11866, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 241680, + "y": 315189, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11868, + "otherUnit": null, + "sequence": 1383, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11870, + "sequence": 1072, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11870, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11872, + "pitch": null, + "reason": null, + "target": { + "x": 1.9031982421875, + "y": 1.7525634765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 135004161 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11872, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11872, + "target": { + "x": 29.4573974609375, + "y": 38.6580810546875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11872, + "sequence": 1384, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11876, + "pitch": null, + "reason": null, + "target": { + "x": 1.8956298828125, + "y": 1.7840576171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11876, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 9, + "Data": "0xf901" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11880, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11880, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.4111328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11880, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.35546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11881, + "pitch": null, + "reason": null, + "target": { + "x": 1.8919677734375, + "y": 1.820068359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11881, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.3067626953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11883, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11885, + "pitch": null, + "reason": null, + "target": { + "x": 1.8941650390625, + "y": 1.8531494140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11885, + "pitch": null, + "reason": null, + "target": { + "x": 2.5504150390625, + "y": 1.0023193359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 1, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11885, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11887, + "pitch": null, + "reason": null, + "target": { + "x": 2.62451171875, + "y": 1.035888671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11887, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.140869140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11887, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.3577880859375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11888, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11888, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 1.98291015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11888, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.4111328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11889, + "pitch": null, + "reason": null, + "target": { + "x": 2.729736328125, + "y": 1.0791015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11889, + "pitch": null, + "reason": null, + "target": { + "x": 2.7696533203125, + "y": 1.0928955078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 131 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 254862, + "y": 368421, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11889, + "otherUnit": null, + "sequence": 1385, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11891, + "pitch": null, + "reason": null, + "target": { + "x": 2.8077392578125, + "y": 1.1046142578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11892, + "pitch": null, + "reason": null, + "target": { + "x": 1.89794921875, + "y": 1.8846435546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11892, + "pitch": null, + "reason": null, + "target": { + "x": 2.85400390625, + "y": 1.118408203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11892, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11892, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11894, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11896, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 259585, + "y": 355332, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11896, + "otherUnit": null, + "sequence": 1386, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11898, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11899, + "pitch": null, + "reason": null, + "target": { + "x": 1.8994140625, + "y": 1.9326171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11899, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11899, + "target": { + "x": 31.45703125, + "y": 43.2518310546875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11899, + "sequence": 1387, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11900, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.068115234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11902, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.2325439453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11903, + "pitch": null, + "reason": null, + "target": { + "x": 1.8994140625, + "y": 1.9686279296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": 10255, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11903, + "pitch": null, + "reason": null, + "target": { + "x": 2.892333984375, + "y": 1.12255859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11903, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.308349609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11903, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 101449731, + 107216900 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11906, + "userid": { + "userId": 3 + } + }, + { + "distance": 9499, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11907, + "pitch": null, + "reason": null, + "target": { + "x": 2.943359375, + "y": 1.1163330078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11909, + "target": { + "x": 30.6640625, + "y": 42.242431640625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11909, + "sequence": 1388, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11910, + "pitch": null, + "reason": null, + "target": { + "x": 1.900146484375, + "y": 2.0037841796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11910, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11911, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11911, + "target": { + "x": 30.4989013671875, + "y": 42.2197265625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11911, + "sequence": 1389, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11913, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11914, + "pitch": null, + "reason": null, + "target": { + "x": 1.9053955078125, + "y": 2.0413818359375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11914, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11914, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11918, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.47900390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11918, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.3404541015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 250582, + "y": 386104, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11920, + "otherUnit": null, + "sequence": 1076, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11920, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.595947265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11920, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.2928466796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11921, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.62744140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11922, + "target": { + "x": 32.068603515625, + "y": 47.553955078125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11922, + "sequence": 1077, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11924, + "target": { + "x": 31.892333984375, + "y": 35.7261962890625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11924, + "sequence": 1390, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11925, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.7159423828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11925, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.85498046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11925, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11926, + "pitch": null, + "reason": null, + "target": { + "x": 1.9403076171875, + "y": 2.978271484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 11926, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 29.25, + "y": 53.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 81264642, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11926, + "sequence": 1078, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11926, + "target": { + "x": 31.8173828125, + "y": 35.9234619140625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11926, + "sequence": 1391, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11929, + "pitch": null, + "reason": null, + "target": { + "x": 2.0533447265625, + "y": 1.896728515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 11929, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 27.46875, + "y": 51.1929931640625, + "z": 4.994140625 + }, + "snapshotUnitLink": 148, + "snapshotUpkeepPlayerId": 1, + "tag": 69206018, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11929, + "sequence": 1079, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11929, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11930, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.2430419921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 11932, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 25.6707763671875, + "y": 50.1993408203125, + "z": 4.994140625 + }, + "snapshotUnitLink": 125, + "snapshotUpkeepPlayerId": 1, + "tag": 23330818, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11932, + "sequence": 1080, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11932, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.183837890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11932, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11933, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.094482421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11935, + "target": { + "x": 24.7940673828125, + "y": 49.9732666015625, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11935, + "sequence": 1081, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11935, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11935, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.053955078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11936, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11936, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 1.949462890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11937, + "pitch": null, + "reason": null, + "target": { + "x": 1.8994140625, + "y": 2.0721435546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11937, + "pitch": null, + "reason": null, + "target": { + "x": 1.905517578125, + "y": 2.978271484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11937, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 1.918212890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11939, + "pitch": null, + "reason": null, + "target": { + "x": 1.9833984375, + "y": 1.90673828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11939, + "pitch": null, + "reason": null, + "target": { + "x": 1.7855224609375, + "y": 2.978271484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11939, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11939, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11940, + "pitch": null, + "reason": null, + "target": { + "x": 1.8873291015625, + "y": 2.1036376953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11940, + "pitch": null, + "reason": null, + "target": { + "x": 1.946533203125, + "y": 1.9359130859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11940, + "target": { + "x": 20.195556640625, + "y": 48.9578857421875, + "z": 5.1883544921875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11940, + "sequence": 1082, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11940, + "pitch": null, + "reason": null, + "target": { + "x": 1.6717529296875, + "y": 2.978271484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11943, + "pitch": null, + "reason": null, + "target": { + "x": 1.929443359375, + "y": 1.9661865234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11943, + "target": { + "x": 21.2041015625, + "y": 49.1265869140625, + "z": 4.9974365234375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11943, + "sequence": 1083, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11944, + "pitch": null, + "reason": null, + "target": { + "x": 1.88134765625, + "y": 2.140380859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 107216901 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11944, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 107216901 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11944, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 83099656, + 112984068, + 123207686, + 128450563 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11946, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11948, + "target": { + "x": 27.5054931640625, + "y": 32.1007080078125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11948, + "sequence": 1392, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11950, + "pitch": null, + "reason": null, + "target": { + "x": 1.8828125, + "y": 2.171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11951, + "pitch": null, + "reason": null, + "target": { + "x": 2.0592041015625, + "y": 1.21826171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 28049411, + 131334149 + ], + "removeMask": { + "Mask": { + "Count": 13, + "Data": "0x0804" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11951, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 28049411, + 131334149 + ], + "removeMask": { + "Mask": { + "Count": 13, + "Data": "0x0804" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11951, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11952, + "pitch": null, + "reason": null, + "target": { + "x": 1.88134765625, + "y": 2.2086181640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 67371013, + 87293957, + 96206866, + 104071172, + 110362635, + 117702659, + 124518411 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x05" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11954, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [ + 10, + 23 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11955, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11955, + "target": { + "x": 32.573486328125, + "y": 32.152099609375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11955, + "sequence": 1393, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 88080389, + 138674178, + 139460609, + 139722753 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11958, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11959, + "pitch": null, + "reason": null, + "target": { + "x": 1.8828125, + "y": 2.246826171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11959, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 65 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11961, + "otherUnit": null, + "sequence": 1084, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11961, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 1.98193359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11961, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 88080389 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11962, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 88080389 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11962, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11962, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.081787109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11963, + "pitch": null, + "reason": null, + "target": { + "x": 1.703369140625, + "y": 2.858154296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11963, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11963, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.1351318359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11963, + "pitch": null, + "reason": null, + "target": { + "x": 2.05908203125, + "y": 1.22705078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 134217729, + 134479873, + 136839169, + 137101313, + 137363457, + 54525953, + 65273859 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11965, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11965, + "pitch": null, + "reason": null, + "target": { + "x": 1.85498046875, + "y": 2.70654296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11965, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11965, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.19189453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11966, + "pitch": null, + "reason": null, + "target": { + "x": 1.9339599609375, + "y": 2.6812744140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11966, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11966, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.2882080078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11967, + "sequence": 1085, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11967, + "sequence": 1086, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11967, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.3485107421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11969, + "sequence": 1087, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 119275523, + 138674178 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11969, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 119275523, + 138674178 + ], + "removeMask": { + "OneIndices": [ + 10, + 18 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11969, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11969, + "sequence": 1088, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11969, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.3914794921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 62914564, + 110624769 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11970, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11970, + "sequence": 1089, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 139460609, + 139722753 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x18" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11970, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 139460609, + 139722753 + ], + "removeMask": { + "OneIndices": [ + 21, + 22 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11970, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11970, + "sequence": 1090, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11970, + "target": { + "x": 29.911865234375, + "y": 42.7188720703125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11970, + "sequence": 1394, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 139984897 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11972, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 139984897 + ], + "removeMask": { + "OneIndices": [ + 23 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11972, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11972, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11972, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11973, + "pitch": null, + "reason": null, + "target": { + "x": 1.9339599609375, + "y": 2.798095703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11973, + "pitch": null, + "reason": null, + "target": { + "x": 1.9339599609375, + "y": 2.924560546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 11973, + "target": { + "x": 29.8193359375, + "y": 43.1556396484375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11973, + "sequence": 1395, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 288062, + "y": 438044, + "z": 32768 + }, + "snapshotUnitLink": 126, + "snapshotUpkeepPlayerId": 1, + "tag": 114032643, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11974, + "otherUnit": null, + "sequence": 1091, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11974, + "pitch": null, + "reason": null, + "target": { + "x": 1.9339599609375, + "y": 3.0604248046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11976, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11977, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.4576416015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11977, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.5120849609375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11978, + "pitch": null, + "reason": null, + "target": { + "x": 2.0592041015625, + "y": 1.2750244140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11978, + "pitch": null, + "reason": null, + "target": { + "x": 1.9339599609375, + "y": 2.965576171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11978, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11978, + "otherUnit": null, + "sequence": 1396, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11978, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.560791015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11980, + "pitch": null, + "reason": null, + "target": { + "x": 2.0592041015625, + "y": 1.3231201171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11980, + "pitch": null, + "reason": null, + "target": { + "x": 1.9339599609375, + "y": 2.7918701171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11980, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.613037109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11981, + "pitch": null, + "reason": null, + "target": { + "x": 2.0592041015625, + "y": 1.3702392578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11981, + "pitch": null, + "reason": null, + "target": { + "x": 3.002685546875, + "y": 1.0447998046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11981, + "sequence": 1397, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11981, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.7034912109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11982, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.76611328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 11984, + "sequence": 1398, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11985, + "otherUnit": null, + "sequence": 1399, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 65792, + "data": { + "TargetPoint": { + "x": 287095, + "y": 92582, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11988, + "otherUnit": null, + "sequence": 1092, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11988, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11988, + "pitch": null, + "reason": null, + "target": { + "x": 2.05908203125, + "y": 1.2677001953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11991, + "pitch": null, + "reason": null, + "target": { + "x": 2.05908203125, + "y": 1.3057861328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 11992, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 254952, + "y": 369445, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 11992, + "otherUnit": null, + "sequence": 1400, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11993, + "pitch": null, + "reason": null, + "target": { + "x": 2.0142822265625, + "y": 1.7630615234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11993, + "pitch": null, + "reason": null, + "target": { + "x": 2.05908203125, + "y": 1.3485107421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 118751236 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 11995, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11995, + "pitch": null, + "reason": null, + "target": { + "x": 2.0142822265625, + "y": 1.802734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11999, + "pitch": null, + "reason": null, + "target": { + "x": 2.00634765625, + "y": 1.3702392578125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11999, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.8427734375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 11999, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.887939453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12000, + "pitch": null, + "reason": null, + "target": { + "x": 1.9696044921875, + "y": 1.33349609375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12002, + "pitch": null, + "reason": null, + "target": { + "x": 1.93115234375, + "y": 1.2950439453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12003, + "pitch": null, + "reason": null, + "target": { + "x": 1.8623046875, + "y": 1.226318359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 137 + } + ], + "addUnitTags": [ + 62914564, + 110624769 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12003, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12004, + "pitch": null, + "reason": null, + "target": { + "x": 1.8319091796875, + "y": 1.1959228515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12004, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 1.91015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12006, + "pitch": null, + "reason": null, + "target": { + "x": 1.7904052734375, + "y": 1.154296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12006, + "pitch": null, + "reason": null, + "target": { + "x": 1.9947509765625, + "y": 2.0491943359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12006, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12006, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12007, + "pitch": null, + "reason": null, + "target": { + "x": 1.75830078125, + "y": 1.122314453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12007, + "pitch": null, + "reason": null, + "target": { + "x": 2.0189208984375, + "y": 1.3472900390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12008, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.9227294921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12010, + "pitch": null, + "reason": null, + "target": { + "x": 1.8382568359375, + "y": 2.97607421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12010, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12010, + "pitch": null, + "reason": null, + "target": { + "x": 1.9879150390625, + "y": 1.322998046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12011, + "pitch": null, + "reason": null, + "target": { + "x": 1.893310546875, + "y": 2.204833984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12011, + "pitch": null, + "reason": null, + "target": { + "x": 1.91943359375, + "y": 3.0213623046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12011, + "pitch": null, + "reason": null, + "target": { + "x": 1.95458984375, + "y": 1.2950439453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12013, + "pitch": null, + "reason": null, + "target": { + "x": 1.9681396484375, + "y": 3.0213623046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12014, + "pitch": null, + "reason": null, + "target": { + "x": 1.8985595703125, + "y": 2.164306640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 60 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12014, + "otherUnit": null, + "sequence": 1093, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12014, + "pitch": null, + "reason": null, + "target": { + "x": 1.919189453125, + "y": 1.2646484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12015, + "pitch": null, + "reason": null, + "target": { + "x": 1.90087890625, + "y": 2.1177978515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12015, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12015, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12015, + "pitch": null, + "reason": null, + "target": { + "x": 1.8785400390625, + "y": 1.2288818359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 28, + "unitLink": 69 + } + ], + "addUnitTags": [ + 85983233 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12017, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12017, + "pitch": null, + "reason": null, + "target": { + "x": 1.900146484375, + "y": 2.0765380859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12017, + "pitch": null, + "reason": null, + "target": { + "x": 1.8544921875, + "y": 1.207763671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12018, + "pitch": null, + "reason": null, + "target": { + "x": 1.8134765625, + "y": 1.1712646484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 131 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 284161, + "y": 410975, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12019, + "otherUnit": null, + "sequence": 1401, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12019, + "pitch": null, + "reason": null, + "target": { + "x": 1.789306640625, + "y": 1.14990234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12021, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12021, + "mask": { + "Mask": { + "Count": 32, + "Data": "0xa0404300" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 12, + "unitLink": 45 + } + ], + "addUnitTags": [ + 63963138 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12022, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12022, + "pitch": null, + "reason": null, + "target": { + "x": 1.7640380859375, + "y": 1.1273193359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0e" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12024, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12024, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12025, + "pitch": null, + "reason": null, + "target": { + "x": 1.9173583984375, + "y": 1.9979248046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12025, + "pitch": null, + "reason": null, + "target": { + "x": 2.0006103515625, + "y": 2.9969482421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12026, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12028, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 290003, + "y": 404330, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12029, + "otherUnit": null, + "sequence": 1402, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12029, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 292402, + "y": 409223, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12030, + "otherUnit": null, + "sequence": 1094, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12032, + "pitch": null, + "reason": null, + "target": { + "x": 1.9134521484375, + "y": 2.037841796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12032, + "target": { + "x": 35.3515625, + "y": 49.356689453125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12032, + "sequence": 1403, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12033, + "pitch": null, + "reason": null, + "target": { + "x": 1.908447265625, + "y": 2.0711669921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12034, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 27.46875, + "y": 51.1929931640625, + "z": 4.994140625 + }, + "snapshotUnitLink": 148, + "snapshotUpkeepPlayerId": 1, + "tag": 69206018, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12034, + "sequence": 1095, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12034, + "mask": { + "Mask": { + "Count": 32, + "Data": "0xa0404300" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12036, + "pitch": null, + "reason": null, + "target": { + "x": 1.90576171875, + "y": 2.1104736328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12036, + "pitch": null, + "reason": null, + "target": { + "x": 1.90576171875, + "y": 2.9969482421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12037, + "pitch": null, + "reason": null, + "target": { + "x": 1.7603759765625, + "y": 2.9969482421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12039, + "pitch": null, + "reason": null, + "target": { + "x": 1.8985595703125, + "y": 2.1470947265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12039, + "pitch": null, + "reason": null, + "target": { + "x": 1.6656494140625, + "y": 2.9969482421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12039, + "target": { + "x": 19.797607421875, + "y": 48.5316162109375, + "z": 5.1812744140625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12039, + "sequence": 1096, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12039, + "pitch": null, + "reason": null, + "target": { + "x": 1.9031982421875, + "y": 2.250732421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12041, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12041, + "target": { + "x": 21.66796875, + "y": 50.2918701171875, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12041, + "sequence": 1097, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": 9603, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12044, + "pitch": null, + "reason": null, + "target": { + "x": 1.88916015625, + "y": 2.1953125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12044, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 23.25, + "y": 49.75, + "z": 4.99609375 + }, + "snapshotUnitLink": 118, + "snapshotUpkeepPlayerId": 1, + "tag": 98828289, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12044, + "sequence": 1098, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12045, + "pitch": null, + "reason": null, + "target": { + "x": 1.7271728515625, + "y": 1.1038818359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12047, + "pitch": null, + "reason": null, + "target": { + "x": 1.677490234375, + "y": 1.0543212890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": 10200, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12047, + "pitch": null, + "reason": null, + "target": { + "x": 1.896728515625, + "y": 2.230224609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": 10549, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12048, + "pitch": null, + "reason": null, + "target": { + "x": 1.908447265625, + "y": 2.2689208984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12048, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12050, + "pitch": null, + "reason": null, + "target": { + "x": 1.6031494140625, + "y": 0.9798583984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12050, + "pitch": null, + "reason": null, + "target": { + "x": 1.589599609375, + "y": 0.947021484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12050, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": 10950, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12052, + "pitch": null, + "reason": null, + "target": { + "x": 1.9189453125, + "y": 2.3099365234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12054, + "pitch": null, + "reason": null, + "target": { + "x": 2.6357421875, + "y": 1.1510009765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12054, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.0086669921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12054, + "pitch": null, + "reason": null, + "target": { + "x": 1.7318115234375, + "y": 1.099365234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12055, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12055, + "pitch": null, + "reason": null, + "target": { + "x": 2.6357421875, + "y": 0.964599609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12055, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.069091796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12056, + "pitch": null, + "reason": null, + "target": { + "x": 1.9061279296875, + "y": 2.141845703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12056, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12056, + "pitch": null, + "reason": null, + "target": { + "x": 1.7003173828125, + "y": 1.0665283203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12058, + "pitch": null, + "reason": null, + "target": { + "x": 1.9068603515625, + "y": 2.175537109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12058, + "pitch": null, + "reason": null, + "target": { + "x": 1.6783447265625, + "y": 1.04296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12059, + "pitch": null, + "reason": null, + "target": { + "x": 1.91064453125, + "y": 2.236328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12059, + "pitch": null, + "reason": null, + "target": { + "x": 2.6357421875, + "y": 0.9329833984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12059, + "pitch": null, + "reason": null, + "target": { + "x": 1.65673828125, + "y": 1.019775390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12060, + "pitch": null, + "reason": null, + "target": { + "x": 1.9090576171875, + "y": 2.276123046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12060, + "pitch": null, + "reason": null, + "target": { + "x": 2.4808349609375, + "y": 0.7781982421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12062, + "pitch": null, + "reason": null, + "target": { + "x": 1.9061279296875, + "y": 2.337646484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12062, + "pitch": null, + "reason": null, + "target": { + "x": 1.6253662109375, + "y": 0.98583984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12063, + "pitch": null, + "reason": null, + "target": { + "x": 1.904541015625, + "y": 2.393798828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12063, + "target": { + "x": 35.0953369140625, + "y": 15.6746826171875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12063, + "sequence": 1099, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12063, + "pitch": null, + "reason": null, + "target": { + "x": 2.4525146484375, + "y": 0.806640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12063, + "pitch": null, + "reason": null, + "target": { + "x": 1.598876953125, + "y": 0.9571533203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12065, + "pitch": null, + "reason": null, + "target": { + "x": 2.4525146484375, + "y": 0.951904296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 141557761, + 141819905 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12065, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12066, + "pitch": null, + "reason": null, + "target": { + "x": 1.906005859375, + "y": 2.463623046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + }, + { + "count": 21, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 141557761, + 54788097, + 56623105, + 57933825, + 70778883, + 72351746, + 72613890, + 75235330, + 77594625, + 82051074, + 82313217, + 88342531, + 92012545, + 95158273, + 98566147, + 99090433, + 100663299, + 105906177, + 107741187, + 113770498, + 116391938, + 123469825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12067, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12067, + "pitch": null, + "reason": null, + "target": { + "x": 2.4525146484375, + "y": 1.1004638671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12069, + "pitch": null, + "reason": null, + "target": { + "x": 1.9083251953125, + "y": 2.507080078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 289941, + "y": 154121, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12069, + "otherUnit": null, + "sequence": 1100, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12070, + "pitch": null, + "reason": null, + "target": { + "x": 1.9090576171875, + "y": 2.5400390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12070, + "pitch": null, + "reason": null, + "target": { + "x": 1.9329833984375, + "y": 2.359130859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12070, + "pitch": null, + "reason": null, + "target": { + "x": 1.9366455078125, + "y": 2.3912353515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 134217729, + 134479873, + 136839169, + 137101313, + 137363457 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12070, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 269110, + "y": 149611, + "z": 33056 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12071, + "otherUnit": null, + "sequence": 1404, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 34, + "unitLink": 154 + } + ], + "addUnitTags": [ + 61341698 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12073, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12073, + "pitch": null, + "reason": null, + "target": { + "x": 1.9378662109375, + "y": 2.4515380859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12074, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 19, + "Data": "0x120400" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12075, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12077, + "pitch": null, + "reason": null, + "target": { + "x": 1.9315185546875, + "y": 2.56787109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 323882, + "y": 180227, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12077, + "otherUnit": null, + "sequence": 1101, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12078, + "pitch": null, + "reason": null, + "target": { + "x": 1.9395751953125, + "y": 2.489990234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12080, + "pitch": null, + "reason": null, + "target": { + "x": 1.9637451171875, + "y": 2.5836181640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12080, + "target": { + "x": 33.1346435546875, + "y": 20.4365234375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12080, + "sequence": 1102, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12082, + "pitch": null, + "reason": null, + "target": { + "x": 2.006591796875, + "y": 2.600830078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12082, + "pitch": null, + "reason": null, + "target": { + "x": 2.303955078125, + "y": 1.1004638671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12082, + "pitch": null, + "reason": null, + "target": { + "x": 2.2154541015625, + "y": 1.1004638671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12082, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 28.5, + "y": 17.5, + "z": 4.994140625 + }, + "snapshotUnitLink": 40, + "snapshotUpkeepPlayerId": 2, + "tag": 0, + "targetUnitFlags": 175, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12082, + "sequence": 1103, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12082, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 26.5, + "y": 19.5, + "z": 4.994140625 + }, + "snapshotUnitLink": 69, + "snapshotUpkeepPlayerId": 2, + "tag": 85983233, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12082, + "sequence": 1405, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12084, + "pitch": null, + "reason": null, + "target": { + "x": 1.618408203125, + "y": 0.934326171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12084, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12085, + "pitch": null, + "reason": null, + "target": { + "x": 1.6783447265625, + "y": 0.934326171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12085, + "pitch": null, + "reason": null, + "target": { + "x": 1.946533203125, + "y": 2.52294921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12085, + "target": { + "x": 29.80419921875, + "y": 17.9500732421875, + "z": 4.80908203125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12085, + "sequence": 1104, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12086, + "target": { + "x": 35.9305419921875, + "y": 17.657958984375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12086, + "sequence": 1406, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12089, + "target": { + "x": 31.0736083984375, + "y": 18.358154296875, + "z": 4.3897705078125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12089, + "sequence": 1105, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12089, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.873291015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12091, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.9219970703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 289469, + "y": 156007, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12093, + "otherUnit": null, + "sequence": 1407, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12093, + "pitch": null, + "reason": null, + "target": { + "x": 1.628173828125, + "y": 0.9410400390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 12, + "unitLink": 45 + } + ], + "addUnitTags": [ + 63963138 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12096, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12097, + "pitch": null, + "reason": null, + "target": { + "x": 1.663818359375, + "y": 0.9361572265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12099, + "pitch": null, + "reason": null, + "target": { + "x": 2.019287109375, + "y": 2.6444091796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 86769665 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12100, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 27, + "Data": "0x7fff6e06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12100, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 19, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 56, + "unitLink": 252 + } + ], + "addUnitTags": [ + 54525953, + 55574529, + 57147393, + 58720257, + 65273859, + 71565324, + 76021762, + 77070339, + 78905348, + 80478209, + 94633986, + 114294785, + 115081217, + 120586246, + 129761285, + 130547715, + 133169153, + 133431297, + 133693441, + 104857604, + 108527637 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12100, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12100, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 274992, + "y": 141904, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12101, + "otherUnit": null, + "sequence": 1408, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12103, + "pitch": null, + "reason": null, + "target": { + "x": 2.0283203125, + "y": 2.693115234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12103, + "pitch": null, + "reason": null, + "target": { + "x": 2.225830078125, + "y": 0.971923828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12104, + "pitch": null, + "reason": null, + "target": { + "x": 2.525146484375, + "y": 1.13037109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x12" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12104, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12104, + "pitch": null, + "reason": null, + "target": { + "x": 2.177001953125, + "y": 1.0206298828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12104, + "target": { + "x": 26.254150390625, + "y": 21.2691650390625, + "z": 4.995849609375 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12104, + "sequence": 1409, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 26, + "unitLink": 40 + } + ], + "addUnitTags": [ + 104595459 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12106, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12106, + "pitch": null, + "reason": null, + "target": { + "x": 2.0379638671875, + "y": 2.726806640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12106, + "pitch": null, + "reason": null, + "target": { + "x": 2.127197265625, + "y": 1.0206298828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 284326, + "y": 144412, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12110, + "otherUnit": null, + "sequence": 1106, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 134217729, + 134479873, + 136839169, + 137101313, + 137363457 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12110, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12111, + "target": { + "x": 31.8763427734375, + "y": 17.909423828125, + "z": 4.30126953125 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12111, + "sequence": 1410, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12114, + "pitch": null, + "reason": null, + "target": { + "x": 2.4942626953125, + "y": 1.1019287109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12115, + "pitch": null, + "reason": null, + "target": { + "x": 2.429443359375, + "y": 1.0709228515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 19, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 23592962, + 71827474, + 72876041, + 74973191, + 88866821, + 93323275, + 93585412, + 101187591, + 105644045, + 106168323, + 115867652, + 119013383, + 123994114, + 124780550, + 125042700, + 126615566, + 127664133, + 128188421, + 128974851 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12115, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12115, + "pitch": null, + "reason": null, + "target": { + "x": 2.0633544921875, + "y": 1.0206298828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12117, + "pitch": null, + "reason": null, + "target": { + "x": 2.391357421875, + "y": 1.0604248046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12117, + "pitch": null, + "reason": null, + "target": { + "x": 2.01123046875, + "y": 1.0206298828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 291097, + "y": 169534, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12118, + "otherUnit": null, + "sequence": 1107, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12119, + "pitch": null, + "reason": null, + "target": { + "x": 2.333984375, + "y": 1.0565185546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12121, + "target": { + "x": 30.669921875, + "y": 15.3699951171875, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12121, + "sequence": 1411, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 123 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12121, + "otherUnit": null, + "sequence": 1412, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 79691781, + 129236997 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12125, + "userid": { + "userId": 3 + } + }, + { + "distance": 9504, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12126, + "pitch": null, + "reason": null, + "target": { + "x": 2.3016357421875, + "y": 1.05029296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12126, + "pitch": null, + "reason": null, + "target": { + "x": 2.2154541015625, + "y": 1.138427734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 141557761, + 141819905 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12127, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12129, + "pitch": null, + "reason": null, + "target": { + "x": 2.2154541015625, + "y": 1.1700439453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 50593805, + 67633161, + 114819087, + 127139846 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12129, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 223232, + "y": 149504, + "z": 40912 + }, + "snapshotUnitLink": 45, + "snapshotUpkeepPlayerId": 2, + "tag": 63963138, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12129, + "otherUnit": null, + "sequence": 1413, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12132, + "target": { + "x": 31.12841796875, + "y": 19.53125, + "z": 4.090576171875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12132, + "sequence": 1108, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12133, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12134, + "target": { + "x": 30.9892578125, + "y": 18.9874267578125, + "z": 4.2535400390625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12134, + "sequence": 1109, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12136, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12136, + "target": { + "x": 27.260498046875, + "y": 17.09912109375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12136, + "sequence": 1414, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12138, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12138, + "pitch": null, + "reason": null, + "target": { + "x": 1.502197265625, + "y": 3.05322265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12141, + "pitch": null, + "reason": null, + "target": { + "x": 1.502197265625, + "y": 2.9710693359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12141, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12141, + "pitch": null, + "reason": null, + "target": { + "x": 1.502197265625, + "y": 2.89208984375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 575 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 234993, + "y": 149381, + "z": 40561 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12141, + "otherUnit": null, + "sequence": 1415, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12143, + "pitch": null, + "reason": null, + "target": { + "x": 2.3624267578125, + "y": 1.0325927734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12143, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12144, + "pitch": null, + "reason": null, + "target": { + "x": 2.2686767578125, + "y": 1.0712890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12144, + "target": { + "x": 29.5833740234375, + "y": 17.5887451171875, + "z": 4.9547119140625 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12144, + "sequence": 1416, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12147, + "pitch": null, + "reason": null, + "target": { + "x": 2.24609375, + "y": 1.0985107421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12147, + "target": { + "x": 28.9293212890625, + "y": 50.0325927734375, + "z": 4.997802734375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12147, + "sequence": 1110, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12148, + "pitch": null, + "reason": null, + "target": { + "x": 1.97509765625, + "y": 2.6236572265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12149, + "pitch": null, + "reason": null, + "target": { + "x": 2.2137451171875, + "y": 1.131591796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 134217729, + 134479873, + 136839169, + 137101313, + 137363457 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12149, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12149, + "pitch": null, + "reason": null, + "target": { + "x": 1.97509765625, + "y": 2.6236572265625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12151, + "target": { + "x": 21.964111328125, + "y": 50.271728515625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12151, + "sequence": 1111, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12151, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 235099, + "y": 154661, + "z": 39757 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12151, + "otherUnit": null, + "sequence": 1417, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12152, + "pitch": null, + "reason": null, + "target": { + "x": 2.184326171875, + "y": 1.1507568359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12153, + "pitch": null, + "reason": null, + "target": { + "x": 2.127685546875, + "y": 0.856201171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12153, + "target": { + "x": 22.135498046875, + "y": 49.576171875, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12153, + "sequence": 1112, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12156, + "pitch": null, + "reason": null, + "target": { + "x": 2.0985107421875, + "y": 0.875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12158, + "pitch": null, + "reason": null, + "target": { + "x": 2.021240234375, + "y": 0.9229736328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12159, + "pitch": null, + "reason": null, + "target": { + "x": 1.9874267578125, + "y": 0.9425048828125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12160, + "pitch": null, + "reason": null, + "target": { + "x": 2.0374755859375, + "y": 2.649169921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12160, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 26.5, + "y": 19.5, + "z": 4.994140625 + }, + "snapshotUnitLink": 69, + "snapshotUpkeepPlayerId": 2, + "tag": 85983233, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12160, + "sequence": 1418, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12162, + "pitch": null, + "reason": null, + "target": { + "x": 2.073486328125, + "y": 2.6851806640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12163, + "pitch": null, + "reason": null, + "target": { + "x": 2.1103515625, + "y": 2.74755859375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12163, + "mask": { + "Mask": { + "Count": 32, + "Data": "0xa0404300" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12164, + "pitch": null, + "reason": null, + "target": { + "x": 2.1103515625, + "y": 2.7860107421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12167, + "pitch": null, + "reason": null, + "target": { + "x": 2.0076904296875, + "y": 0.9769287109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12167, + "pitch": null, + "reason": null, + "target": { + "x": 2.00048828125, + "y": 2.643798828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12169, + "pitch": null, + "reason": null, + "target": { + "x": 2.1483154296875, + "y": 1.1636962890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12170, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12171, + "pitch": null, + "reason": null, + "target": { + "x": 2.0098876953125, + "y": 1.008544921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12171, + "pitch": null, + "reason": null, + "target": { + "x": 2.08203125, + "y": 1.1624755859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12171, + "pitch": null, + "reason": null, + "target": { + "x": 2.04541015625, + "y": 1.1612548828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12171, + "pitch": null, + "reason": null, + "target": { + "x": 2.0279541015625, + "y": 2.6767578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12173, + "pitch": null, + "reason": null, + "target": { + "x": 1.991455078125, + "y": 1.1546630859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12173, + "pitch": null, + "reason": null, + "target": { + "x": 2.047119140625, + "y": 2.70166015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12174, + "pitch": null, + "reason": null, + "target": { + "x": 1.95458984375, + "y": 1.14990234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12174, + "pitch": null, + "reason": null, + "target": { + "x": 2.0699462890625, + "y": 2.73193359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12175, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 27.25, + "y": 18.25, + "z": 4.994140625 + }, + "snapshotUnitLink": 45, + "snapshotUpkeepPlayerId": 2, + "tag": 63963138, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12175, + "sequence": 1419, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12177, + "pitch": null, + "reason": null, + "target": { + "x": 1.9776611328125, + "y": 1.0369873046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12177, + "pitch": null, + "reason": null, + "target": { + "x": 1.8885498046875, + "y": 1.1390380859375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12177, + "mask": { + "Mask": { + "Count": 32, + "Data": "0xa0404300" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12177, + "pitch": null, + "reason": null, + "target": { + "x": 2.0931396484375, + "y": 2.762939453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 87293957, + 96206866, + 96468997, + 115343372, + 115605525, + 117702659, + 120061957, + 125304839, + 126091265, + 126353409, + 127401990, + 127926276, + 129499138, + 130285574 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12178, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 24, + "Data": "0xadeef4" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12178, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12179, + "pitch": null, + "reason": null, + "target": { + "x": 1.840576171875, + "y": 1.12646484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12181, + "pitch": null, + "reason": null, + "target": { + "x": 1.931884765625, + "y": 1.0625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12181, + "pitch": null, + "reason": null, + "target": { + "x": 2.0159912109375, + "y": 2.760986328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12182, + "pitch": null, + "reason": null, + "target": { + "x": 1.803955078125, + "y": 1.11474609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 123 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12184, + "otherUnit": null, + "sequence": 1420, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12185, + "pitch": null, + "reason": null, + "target": { + "x": 2.0159912109375, + "y": 2.801513671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 67371013, + 104071172, + 110362635, + 112984068, + 124518411, + 128450563, + 132907009, + 122683402, + 82575361, + 112459783 + ], + "removeMask": { + "Mask": { + "Count": 14, + "Data": "0xdb00" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12186, + "userid": { + "userId": 0 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 65 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12186, + "otherUnit": null, + "sequence": 1113, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12186, + "pitch": null, + "reason": null, + "target": { + "x": 1.61279296875, + "y": 2.8509521484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12186, + "pitch": null, + "reason": null, + "target": { + "x": 2.0159912109375, + "y": 2.8607177734375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12188, + "pitch": null, + "reason": null, + "target": { + "x": 1.7550048828125, + "y": 2.708740234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 1835011 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12188, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 1835011 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12188, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12189, + "pitch": null, + "reason": null, + "target": { + "x": 1.884521484375, + "y": 2.708740234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 253240, + "y": 397813, + "z": 34077 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12189, + "otherUnit": null, + "sequence": 1421, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12190, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12190, + "otherUnit": null, + "sequence": 1422, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12192, + "pitch": null, + "reason": null, + "target": { + "x": 2.1103515625, + "y": 2.715576171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12192, + "sequence": 1114, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12192, + "sequence": 1115, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12193, + "sequence": 1116, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12193, + "sequence": 1117, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 90177547, + 95420431 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12193, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 90177547, + 95420431 + ], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x50" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12193, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 96206866, + 96468997, + 110362635, + 115343372, + 115605525, + 117702659, + 120061957, + 125304839, + 126353409, + 127401990, + 127926276, + 129499138, + 130285574 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12193, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12195, + "sequence": 1118, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 131596291, + 135266307 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x18" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12195, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 131596291, + 135266307 + ], + "removeMask": { + "OneIndices": [ + 13, + 16 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12195, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12195, + "sequence": 1119, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 294972, + "y": 380173, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12195, + "otherUnit": null, + "sequence": 1423, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12196, + "pitch": null, + "reason": null, + "target": { + "x": 1.884521484375, + "y": 2.8035888671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12196, + "sequence": 1120, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12196, + "pitch": null, + "reason": null, + "target": { + "x": 1.884521484375, + "y": 2.841552734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 137887746, + 138936321 + ], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x60" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12196, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 137887746, + 138936321 + ], + "removeMask": { + "OneIndices": [ + 17, + 19 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12196, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12197, + "sequence": 1121, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12197, + "sequence": 1122, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 139198465 + ], + "removeMask": { + "Mask": { + "Count": 8, + "Data": "0x80" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12197, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 139198465 + ], + "removeMask": { + "OneIndices": [ + 20 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12197, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12199, + "sequence": 1123, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 140247041, + 140509185 + ], + "removeMask": { + "Mask": { + "Count": 10, + "Data": "0x0300" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12199, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 140247041, + 140509185 + ], + "removeMask": { + "OneIndices": [ + 24, + 25 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12199, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12199, + "sequence": 1124, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 294084, + "y": 383836, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12199, + "otherUnit": null, + "sequence": 1424, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12200, + "sequence": 1125, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12200, + "sequence": 1126, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 140771329, + 141033473 + ], + "removeMask": { + "Mask": { + "Count": 12, + "Data": "0x0c00" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12200, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 140771329, + 141033473 + ], + "removeMask": { + "OneIndices": [ + 26, + 27 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12200, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12200, + "mask": { + "Mask": { + "Count": 5, + "Data": "0x1b" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12201, + "pitch": null, + "reason": null, + "target": { + "x": 1.83935546875, + "y": 1.1282958984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 73 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + } + ], + "addUnitTags": [ + 27262978, + 83099656, + 89391111, + 123207686, + 132120577, + 132382721, + 111935496, + 121896962 + ], + "removeMask": { + "Mask": { + "Count": 17, + "Data": "0x1e4d00" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12203, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12203, + "pitch": null, + "reason": null, + "target": { + "x": 2.0159912109375, + "y": 2.9302978515625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12204, + "pitch": null, + "reason": null, + "target": { + "x": 1.8687744140625, + "y": 1.14453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12204, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12204, + "pitch": null, + "reason": null, + "target": { + "x": 2.0159912109375, + "y": 2.9627685546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12204, + "pitch": null, + "reason": null, + "target": { + "x": 2.1102294921875, + "y": 2.7352294921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12208, + "mask": { + "OneIndices": [ + 24 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109838337 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12210, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12211, + "mask": { + "OneIndices": [ + 24 + ] + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12212, + "pitch": null, + "reason": null, + "target": { + "x": 1.879638671875, + "y": 1.12890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 24, + "Data": "0xc00900" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12212, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 575 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 269815, + "y": 426601, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12212, + "otherUnit": null, + "sequence": 1425, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12214, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 2, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12215, + "mask": { + "Mask": { + "Count": 25, + "Data": "0xc0022100" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12215, + "pitch": null, + "reason": null, + "target": { + "x": 1.879638671875, + "y": 1.05615234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12215, + "mask": { + "Mask": { + "Count": 32, + "Data": "0xa0404300" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12216, + "pitch": null, + "reason": null, + "target": { + "x": 1.879638671875, + "y": 1.011962890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12218, + "pitch": null, + "reason": null, + "target": { + "x": 2.1021728515625, + "y": 3.1358642578125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 36, + "Data": "0x73bf84a30e" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12219, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 292342, + "y": 387152, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12220, + "otherUnit": null, + "sequence": 1426, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12222, + "pitch": null, + "reason": null, + "target": { + "x": 2.1103515625, + "y": 2.755615234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 253982, + "y": 128618, + "z": 40923 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12222, + "otherUnit": null, + "sequence": 1127, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12223, + "pitch": null, + "reason": null, + "target": { + "x": 2.1103515625, + "y": 2.7939453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 291061, + "y": 383601, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12223, + "otherUnit": null, + "sequence": 1427, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12225, + "pitch": null, + "reason": null, + "target": { + "x": 2.1103515625, + "y": 2.8404541015625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12225, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12226, + "pitch": null, + "reason": null, + "target": { + "x": 2.1103515625, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x12" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12226, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 8, + "Data": "0x80" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12226, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12227, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12227, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12230, + "otherUnit": null, + "sequence": 1428, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12231, + "pitch": null, + "reason": null, + "target": { + "x": 2.0533447265625, + "y": 3.00537109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 199733, + "y": 164502, + "z": 40917 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12233, + "otherUnit": null, + "sequence": 1128, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12233, + "pitch": null, + "reason": null, + "target": { + "x": 2.1102294921875, + "y": 2.7724609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 10, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 67371013, + 87293957, + 96206866, + 96468997, + 104071172, + 110362635, + 115343372, + 117702659, + 126353409, + 130285574 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12234, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12236, + "target": { + "x": 23.752197265625, + "y": 20.21044921875, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12236, + "sequence": 1129, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 288456, + "y": 374784, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12236, + "otherUnit": null, + "sequence": 1429, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12236, + "pitch": null, + "reason": null, + "target": { + "x": 2.1102294921875, + "y": 2.8128662109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12237, + "pitch": null, + "reason": null, + "target": { + "x": 2.0706787109375, + "y": 3.11181640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12238, + "pitch": null, + "reason": null, + "target": { + "x": 2.0391845703125, + "y": 3.081787109375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12238, + "target": { + "x": 23.8970947265625, + "y": 20.0904541015625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12238, + "sequence": 1130, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12238, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12238, + "pitch": null, + "reason": null, + "target": { + "x": 2.1102294921875, + "y": 2.8511962890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12241, + "pitch": null, + "reason": null, + "target": { + "x": 1.991943359375, + "y": 3.038330078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 13 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12241, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12242, + "pitch": null, + "reason": null, + "target": { + "x": 1.94384765625, + "y": 3.0037841796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12246, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 106168326, + 122421263 + ], + "removeMask": { + "OneIndices": [ + 14 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12249, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12249, + "otherUnit": null, + "sequence": 1430, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12249, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 1.041259765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12251, + "pitch": null, + "reason": null, + "target": { + "x": 1.5953369140625, + "y": 1.095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 224134, + "y": 187217, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12252, + "otherUnit": null, + "sequence": 1131, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12253, + "pitch": null, + "reason": null, + "target": { + "x": 1.53857421875, + "y": 1.095703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 12, + "Data": "0x0c00" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12255, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 65273860, + 74973192 + ], + "removeMask": { + "OneIndices": [ + 16 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12255, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 84672519, + 103022598, + 104857607, + 108527638, + 123469825 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12255, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 123 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12256, + "otherUnit": null, + "sequence": 1431, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12260, + "pitch": null, + "reason": null, + "target": { + "x": 2.06591796875, + "y": 3.0350341796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 189167, + "y": 176760, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12260, + "otherUnit": null, + "sequence": 1432, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12262, + "pitch": null, + "reason": null, + "target": { + "x": 1.9769287109375, + "y": 2.9940185546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12263, + "pitch": null, + "reason": null, + "target": { + "x": 2.015869140625, + "y": 2.9805908203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12264, + "target": { + "x": 23.9638671875, + "y": 21.6737060546875, + "z": 4.9969482421875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12264, + "sequence": 1433, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12266, + "pitch": null, + "reason": null, + "target": { + "x": 2.081787109375, + "y": 3.0662841796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 195759, + "y": 172438, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12266, + "otherUnit": null, + "sequence": 1132, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12267, + "pitch": null, + "reason": null, + "target": { + "x": 2.056396484375, + "y": 2.9580078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12267, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12270, + "target": { + "x": 20.6064453125, + "y": 19.7701416015625, + "z": 4.997802734375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12270, + "sequence": 1133, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12270, + "pitch": null, + "reason": null, + "target": { + "x": 1.765869140625, + "y": 1.011962890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12271, + "pitch": null, + "reason": null, + "target": { + "x": 2.0889892578125, + "y": 3.1019287109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12271, + "pitch": null, + "reason": null, + "target": { + "x": 1.724853515625, + "y": 1.011962890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12271, + "otherUnit": null, + "sequence": 1434, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12272, + "target": { + "x": 20.190185546875, + "y": 19.7767333984375, + "z": 5.0535888671875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12272, + "sequence": 1134, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12274, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12274, + "mask": { + "Mask": { + "Count": 32, + "Data": "0xa0404300" + } + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12275, + "target": { + "x": 20.4219970703125, + "y": 19.4947509765625, + "z": 5.0185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12275, + "sequence": 1135, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12278, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12278, + "pitch": null, + "reason": null, + "target": { + "x": 2.2095947265625, + "y": 2.87109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12279, + "target": { + "x": 20.7691650390625, + "y": 19.5831298828125, + "z": 4.997802734375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12279, + "sequence": 1136, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12279, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12281, + "otherUnit": null, + "sequence": 1435, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12282, + "pitch": null, + "reason": null, + "target": { + "x": 2.09375, + "y": 3.135009765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 69206019 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12282, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12286, + "pitch": null, + "reason": null, + "target": { + "x": 2.2095947265625, + "y": 2.931396484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 196884, + "y": 179006, + "z": 40933 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12288, + "otherUnit": null, + "sequence": 1137, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 524296, + 131858434 + ], + "removeMask": { + "OneIndices": [ + 13, + 20 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12288, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12288, + "sequence": 1436, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 119275524, + 138674179 + ], + "removeMask": { + "OneIndices": [ + 23, + 24 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12289, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12289, + "mask": { + "Mask": { + "Count": 32, + "Data": "0xa0404300" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12290, + "pitch": null, + "reason": null, + "target": { + "x": 2.0811767578125, + "y": 2.9385986328125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 133431303 + ], + "removeMask": { + "OneIndices": [ + 25 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12290, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12292, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 9, + "Data": "0xed01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12294, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 277002, + "y": 395032, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12294, + "otherUnit": null, + "sequence": 1437, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12296, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12297, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 219917, + "y": 167453, + "z": 40935 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12298, + "otherUnit": null, + "sequence": 1138, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 24, + "abilLink": 152 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12298, + "otherUnit": null, + "sequence": 1438, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12300, + "pitch": null, + "reason": null, + "target": { + "x": 2.193359375, + "y": 2.9732666015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12301, + "sequence": 1439, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12301, + "pitch": null, + "reason": null, + "target": { + "x": 2.142333984375, + "y": 2.9871826171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12303, + "mask": { + "Mask": { + "Count": 16, + "Data": "0x2204" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12303, + "mask": { + "Mask": { + "Count": 32, + "Data": "0xa0404300" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12304, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12305, + "mask": { + "Mask": { + "Count": 16, + "Data": "0x2284" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12305, + "pitch": null, + "reason": null, + "target": { + "x": 1.3760986328125, + "y": 3.0496826171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12307, + "pitch": null, + "reason": null, + "target": { + "x": 2.068603515625, + "y": 3.111328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 245268, + "y": 415328, + "z": 40448 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12307, + "otherUnit": null, + "sequence": 1440, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12309, + "pitch": null, + "reason": null, + "target": { + "x": 1.40771484375, + "y": 3.0496826171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12311, + "pitch": null, + "reason": null, + "target": { + "x": 1.5372314453125, + "y": 2.95166015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12312, + "pitch": null, + "reason": null, + "target": { + "x": 1.5751953125, + "y": 2.913818359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [ + 3, + 12 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12312, + "userid": { + "userId": 5 + } + }, + { + "distance": 10663, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12314, + "pitch": null, + "reason": null, + "target": { + "x": 2.069091796875, + "y": 2.9730224609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 117702659 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12314, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 96468997, + 118751236, + 121896962, + 82575361, + 112459783 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12318, + "userid": { + "userId": 5 + } + }, + { + "distance": 12653, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12319, + "pitch": null, + "reason": null, + "target": { + "x": 2.075927734375, + "y": 3.010498046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12319, + "target": { + "x": 24.8856201171875, + "y": 47.189208984375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12319, + "sequence": 1139, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + } + ], + "addUnitTags": [ + 87293957, + 115343372, + 115605525, + 120061957, + 124518411, + 125304839, + 126353409, + 127401990, + 127926276, + 128450563, + 129499138, + 130285574, + 122683402 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x1b" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12322, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12323, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 292351, + "y": 408774, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12324, + "otherUnit": null, + "sequence": 1441, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12326, + "pitch": null, + "reason": null, + "target": { + "x": 2.088623046875, + "y": 3.0443115234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12326, + "pitch": null, + "reason": null, + "target": { + "x": 1.679443359375, + "y": 2.913818359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12327, + "pitch": null, + "reason": null, + "target": { + "x": 1.846923828125, + "y": 2.913818359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 73924615, + 80740357, + 88604680, + 101449732, + 117178373, + 125566986, + 130809864, + 131072005, + 135528449, + 135790594, + 136314881, + 136577026, + 137625601, + 138149889, + 138412033 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12327, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12329, + "otherUnit": null, + "sequence": 1140, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 292415, + "y": 416745, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12330, + "otherUnit": null, + "sequence": 1442, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 73924615 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12331, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12333, + "pitch": null, + "reason": null, + "target": { + "x": 2.078125, + "y": 3.0772705078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12334, + "sequence": 1141, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12334, + "pitch": null, + "reason": null, + "target": { + "x": 1.9132080078125, + "y": 2.913818359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12335, + "pitch": null, + "reason": null, + "target": { + "x": 2.0325927734375, + "y": 3.0986328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12335, + "sequence": 1142, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12335, + "sequence": 1143, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12335, + "pitch": null, + "reason": null, + "target": { + "x": 2.0396728515625, + "y": 2.913818359375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 80740357 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12335, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 269365, + "y": 426712, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12335, + "otherUnit": null, + "sequence": 1443, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12337, + "sequence": 1144, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 88604680, + 101449732 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0c" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12337, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12337, + "sequence": 1145, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12338, + "pitch": null, + "reason": null, + "target": { + "x": 1.9951171875, + "y": 3.0936279296875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12338, + "sequence": 1146, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12338, + "sequence": 1147, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 117178373, + 125566986 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x30" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12338, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12338, + "target": { + "x": 33.0570068359375, + "y": 52.423828125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12338, + "sequence": 1444, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12341, + "pitch": null, + "reason": null, + "target": { + "x": 1.95166015625, + "y": 3.0885009765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12342, + "pitch": null, + "reason": null, + "target": { + "x": 1.920166015625, + "y": 3.0848388671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12342, + "mask": { + "Mask": { + "Count": 16, + "Data": "0x2284" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12344, + "pitch": null, + "reason": null, + "target": { + "x": 2.0496826171875, + "y": 3.091552734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12344, + "pitch": null, + "reason": null, + "target": { + "x": 1.88623046875, + "y": 3.07861328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12345, + "pitch": null, + "reason": null, + "target": { + "x": 1.835205078125, + "y": 3.0689697265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 290109, + "y": 384552, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12345, + "otherUnit": null, + "sequence": 1149, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 73 + } + ], + "addUnitTags": [ + 67371013, + 96206866, + 96468997, + 104071172, + 118751236, + 132120577, + 111935496 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12348, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12349, + "pitch": null, + "reason": null, + "target": { + "x": 2.0396728515625, + "y": 3.0528564453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12349, + "pitch": null, + "reason": null, + "target": { + "x": 2.0396728515625, + "y": 3.2044677734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12353, + "pitch": null, + "reason": null, + "target": { + "x": 0.6875, + "y": 0.742431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + }, + { + "count": 18, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 110624773, + 52428801, + 52690945, + 52953089, + 53739524, + 57671682, + 58982401, + 73662467, + 80216068, + 87818243, + 93061123, + 100139011, + 103546884, + 103809027, + 107479043, + 108265474, + 114032643, + 128712707, + 130023426 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12356, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12356, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 0.961181640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12359, + "pitch": null, + "reason": null, + "target": { + "x": 2.0396728515625, + "y": 3.302490234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 295937, + "y": 487510, + "z": 32811 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12359, + "otherUnit": null, + "sequence": 1150, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12360, + "pitch": null, + "reason": null, + "target": { + "x": 2.0396728515625, + "y": 3.337158203125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12360, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12361, + "pitch": null, + "reason": null, + "target": { + "x": 2.014404296875, + "y": 3.0743408203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12361, + "target": { + "x": 37.317626953125, + "y": 58.5592041015625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12361, + "sequence": 1151, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12364, + "pitch": null, + "reason": null, + "target": { + "x": 1.9776611328125, + "y": 3.062255859375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12365, + "mask": { + "Mask": { + "Count": 16, + "Data": "0x2284" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12367, + "pitch": null, + "reason": null, + "target": { + "x": 1.9468994140625, + "y": 3.0562744140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 6, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12367, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12368, + "pitch": null, + "reason": null, + "target": { + "x": 2.0396728515625, + "y": 3.2044677734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12368, + "pitch": null, + "reason": null, + "target": { + "x": 1.9385986328125, + "y": 3.0654296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12370, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12370, + "pitch": null, + "reason": null, + "target": { + "x": 1.834228515625, + "y": 2.961181640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12370, + "pitch": null, + "reason": null, + "target": { + "x": 2.2362060546875, + "y": 0.896484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12371, + "mask": { + "Mask": { + "Count": 16, + "Data": "0x3284" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 147 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12371, + "otherUnit": null, + "sequence": 1445, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12372, + "pitch": null, + "reason": null, + "target": { + "x": 2.1375732421875, + "y": 0.9603271484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12372, + "pitch": null, + "reason": null, + "target": { + "x": 2.0877685546875, + "y": 0.9603271484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12374, + "sequence": 1446, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12374, + "pitch": null, + "reason": null, + "target": { + "x": 2.0355224609375, + "y": 0.9603271484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 275009, + "y": 386031, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12375, + "otherUnit": null, + "sequence": 1152, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12375, + "pitch": null, + "reason": null, + "target": { + "x": 1.9427490234375, + "y": 0.9603271484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12376, + "sequence": 1447, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12376, + "pitch": null, + "reason": null, + "target": { + "x": 1.892822265625, + "y": 0.9603271484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12378, + "pitch": null, + "reason": null, + "target": { + "x": 1.972412109375, + "y": 3.0772705078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12378, + "pitch": null, + "reason": null, + "target": { + "x": 1.8406982421875, + "y": 0.9603271484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 524296, + 131858434 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12379, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12379, + "pitch": null, + "reason": null, + "target": { + "x": 1.8023681640625, + "y": 0.9603271484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 16 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12385, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 25, + "Data": "0xf3afb701" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12385, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12386, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + } + ], + "addUnitTags": [ + 141557761, + 141819905, + 132644868 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12386, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12389, + "pitch": null, + "reason": null, + "target": { + "x": 1.8023681640625, + "y": 0.9974365234375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 250953, + "y": 409238, + "z": 37505 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12390, + "otherUnit": null, + "sequence": 1153, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12390, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12390, + "pitch": null, + "reason": null, + "target": { + "x": 1.8023681640625, + "y": 1.049560546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 17, + "Data": "0x229900" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12391, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12391, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 30.744140625, + "y": 49.9937744140625, + "z": 4.5584716796875 + }, + "snapshotUnitLink": 73, + "snapshotUpkeepPlayerId": 2, + "tag": 111935496, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12391, + "sequence": 1154, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 15, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 84672519, + 103022598, + 104857607, + 54525953, + 55574529, + 57147393, + 77070339, + 78905348, + 80478209, + 94633986, + 114294785, + 115081217, + 120586246, + 123469825, + 129761285, + 130547715, + 133169153, + 133693441 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12393, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 270670, + "y": 148445, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12393, + "otherUnit": null, + "sequence": 1448, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 95420431 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12396, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12396, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 30.744140625, + "y": 49.9937744140625, + "z": 4.5584716796875 + }, + "snapshotUnitLink": 73, + "snapshotUpkeepPlayerId": 2, + "tag": 111935496, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12396, + "sequence": 1155, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12396, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12397, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 36.812255859375, + "y": 12.7197265625, + "z": 4 + }, + "snapshotUnitLink": 67, + "snapshotUpkeepPlayerId": 2, + "tag": 98304003, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12397, + "sequence": 1449, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x09" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12398, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 11, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 28 + } + ], + "addUnitTags": [ + 1835011, + 90177547, + 131596291, + 135266307, + 137887746, + 138936321, + 139198465, + 140247041, + 140509185, + 140771329, + 141033473 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12398, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12398, + "target": { + "x": 30.68017578125, + "y": 50.7906494140625, + "z": 4.775390625 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12398, + "sequence": 1156, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12401, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 31.516357421875, + "y": 50.735107421875, + "z": 4.5548095703125 + }, + "snapshotUnitLink": 70, + "snapshotUpkeepPlayerId": 2, + "tag": 96468997, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12401, + "sequence": 1157, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 289300, + "y": 100330, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12401, + "otherUnit": null, + "sequence": 1450, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12404, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12404, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 31.516357421875, + "y": 50.735107421875, + "z": 4.5548095703125 + }, + "snapshotUnitLink": 70, + "snapshotUpkeepPlayerId": 2, + "tag": 96468997, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12404, + "sequence": 1158, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12404, + "mask": { + "Mask": { + "Count": 42, + "Data": "0xe4504b480300" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12405, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12405, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 0, + "unitLink": 475 + } + ], + "addUnitTags": [ + 131334149, + 41418753 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12407, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12407, + "pitch": null, + "reason": null, + "target": { + "x": 2.019287109375, + "y": 3.1405029296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 10, + "Data": "0x0202" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12408, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12408, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 6, + 11, + 26 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12408, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12409, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 107216901 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12411, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12412, + "target": { + "x": 31.89794921875, + "y": 50.798828125, + "z": 4.4730224609375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12412, + "sequence": 1159, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12412, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12415, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 31.8284912109375, + "y": 50.9422607421875, + "z": 4.5433349609375 + }, + "snapshotUnitLink": 70, + "snapshotUpkeepPlayerId": 2, + "tag": 104071172, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12415, + "sequence": 1160, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12415, + "otherUnit": null, + "sequence": 1451, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12417, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 31.8284912109375, + "y": 50.9422607421875, + "z": 4.5433349609375 + }, + "snapshotUnitLink": 70, + "snapshotUpkeepPlayerId": 2, + "tag": 104071172, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12417, + "sequence": 1161, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12417, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12420, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12420, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12420, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12422, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 31.8284912109375, + "y": 50.9422607421875, + "z": 4.5433349609375 + }, + "snapshotUnitLink": 70, + "snapshotUpkeepPlayerId": 2, + "tag": 104071172, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12422, + "sequence": 1162, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12424, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 31.8284912109375, + "y": 50.9422607421875, + "z": 4.5433349609375 + }, + "snapshotUnitLink": 70, + "snapshotUpkeepPlayerId": 2, + "tag": 104071172, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12424, + "sequence": 1163, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 272665, + "y": 400485, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12424, + "otherUnit": null, + "sequence": 1452, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12426, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12427, + "pitch": null, + "reason": null, + "target": { + "x": 1.9979248046875, + "y": 3.10205078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12428, + "otherUnit": null, + "sequence": 1453, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12430, + "pitch": null, + "reason": null, + "target": { + "x": 2.035400390625, + "y": 3.135009765625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12430, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12430, + "pitch": null, + "reason": null, + "target": { + "x": 2.019287109375, + "y": 3.0987548828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12433, + "pitch": null, + "reason": null, + "target": { + "x": 2.0616455078125, + "y": 3.16650390625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12433, + "mask": { + "OneIndices": [ + 1, + 17 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 76808196, + 94371843, + 106430469, + 112197642, + 124256259 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12434, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12435, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12435, + "target": { + "x": 28.8624267578125, + "y": 49.592041015625, + "z": 4.93017578125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12435, + "sequence": 1164, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x18" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12435, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12437, + "pitch": null, + "reason": null, + "target": { + "x": 1.9014892578125, + "y": 3.0650634765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12438, + "pitch": null, + "reason": null, + "target": { + "x": 1.9588623046875, + "y": 3.0692138671875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12438, + "target": { + "x": 27.2896728515625, + "y": 48.700439453125, + "z": 4.997802734375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12438, + "sequence": 1165, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109838337 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12438, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12438, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12441, + "pitch": null, + "reason": null, + "target": { + "x": 2.029296875, + "y": 3.08544921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 123 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12441, + "otherUnit": null, + "sequence": 1454, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12442, + "pitch": null, + "reason": null, + "target": { + "x": 2.060791015625, + "y": 3.095703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12442, + "target": { + "x": 27.237548828125, + "y": 48.760986328125, + "z": 4.997802734375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12442, + "sequence": 1166, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 264605, + "y": 395437, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12443, + "otherUnit": null, + "sequence": 1455, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12445, + "pitch": null, + "reason": null, + "target": { + "x": 2.1033935546875, + "y": 3.115478515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 247177, + "y": 410746, + "z": 38826 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12448, + "otherUnit": null, + "sequence": 1167, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12450, + "target": { + "x": 32.933837890625, + "y": 48.572021484375, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12450, + "sequence": 1456, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12453, + "pitch": null, + "reason": null, + "target": { + "x": 1.834228515625, + "y": 3.068603515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12457, + "userid": { + "userId": 0 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12457, + "mask": { + "Mask": { + "Count": 24, + "Data": "0x37d258" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12457, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [ + 3 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12459, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 576 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12461, + "otherUnit": null, + "sequence": 1457, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12463, + "pitch": null, + "reason": null, + "target": { + "x": 2.0638427734375, + "y": 3.1185302734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12465, + "pitch": null, + "reason": null, + "target": { + "x": 1.9722900390625, + "y": 3.1107177734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12465, + "pitch": null, + "reason": null, + "target": { + "x": 1.9237060546875, + "y": 3.110107421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12468, + "pitch": null, + "reason": null, + "target": { + "x": 1.8660888671875, + "y": 3.110107421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12469, + "pitch": null, + "reason": null, + "target": { + "x": 1.830078125, + "y": 3.1109619140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 18, + "Data": "0x1f5f03" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12469, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 234229, + "y": 402542, + "z": 40012 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12471, + "otherUnit": null, + "sequence": 1168, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + }, + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 87293957, + 115343372, + 115605525, + 120061957, + 124518411, + 125304839, + 126353409, + 127401990, + 127926276, + 128450563, + 129499138, + 130285574, + 121896962, + 122683402, + 66584580, + 82575361, + 112459783, + 120848385, + 121110529 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12476, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12479, + "pitch": null, + "reason": null, + "target": { + "x": 1.8743896484375, + "y": 1.114013671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 300519, + "y": 417132, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12479, + "otherUnit": null, + "sequence": 1458, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12480, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12482, + "otherUnit": null, + "sequence": 1459, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12485, + "pitch": null, + "reason": null, + "target": { + "x": 2.078369140625, + "y": 3.0987548828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12486, + "pitch": null, + "reason": null, + "target": { + "x": 2.0703125, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12486, + "target": { + "x": 27.25048828125, + "y": 48.8111572265625, + "z": 4.997802734375 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12486, + "sequence": 1170, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12486, + "pitch": null, + "reason": null, + "target": { + "x": 2.1131591796875, + "y": 3.0987548828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12487, + "pitch": null, + "reason": null, + "target": { + "x": 2.000732421875, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12489, + "pitch": null, + "reason": null, + "target": { + "x": 1.963134765625, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12490, + "pitch": null, + "reason": null, + "target": { + "x": 1.8935546875, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12490, + "mask": { + "Mask": { + "Count": 20, + "Data": "0x60e204" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12493, + "pitch": null, + "reason": null, + "target": { + "x": 1.823974609375, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12493, + "pitch": null, + "reason": null, + "target": { + "x": 1.941650390625, + "y": 3.176025390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 300906, + "y": 412742, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12493, + "otherUnit": null, + "sequence": 1460, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12494, + "pitch": null, + "reason": null, + "target": { + "x": 1.7679443359375, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12494, + "pitch": null, + "reason": null, + "target": { + "x": 2.1407470703125, + "y": 3.3150634765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12494, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12494, + "pitch": null, + "reason": null, + "target": { + "x": 2.07958984375, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12495, + "pitch": null, + "reason": null, + "target": { + "x": 1.7247314453125, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12497, + "pitch": null, + "reason": null, + "target": { + "x": 1.6846923828125, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12497, + "pitch": null, + "reason": null, + "target": { + "x": 1.9111328125, + "y": 1.0743408203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12497, + "pitch": null, + "reason": null, + "target": { + "x": 2.03466796875, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12498, + "pitch": null, + "reason": null, + "target": { + "x": 1.6287841796875, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12498, + "pitch": null, + "reason": null, + "target": { + "x": 2.016845703125, + "y": 1.029296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12498, + "pitch": null, + "reason": null, + "target": { + "x": 1.9957275390625, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12500, + "pitch": null, + "reason": null, + "target": { + "x": 2.06640625, + "y": 1.00830078125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12500, + "pitch": null, + "reason": null, + "target": { + "x": 2.1031494140625, + "y": 0.9873046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12500, + "pitch": null, + "reason": null, + "target": { + "x": 2.2545166015625, + "y": 3.3150634765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 100, + "unitLink": 148 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + }, + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 68419585, + 129236998, + 79429638, + 100401155, + 108003330 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12500, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12500, + "mask": { + "Mask": { + "Count": 20, + "Data": "0x60e204" + } + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12501, + "target": { + "x": 44.714111328125, + "y": 53.2601318359375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12501, + "sequence": 1171, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12501, + "pitch": null, + "reason": null, + "target": { + "x": 2.355712890625, + "y": 3.3150634765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12501, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 293177, + "y": 446030, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12501, + "otherUnit": null, + "sequence": 1462, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12501, + "pitch": null, + "reason": null, + "target": { + "x": 1.949462890625, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12502, + "pitch": null, + "reason": null, + "target": { + "x": 2.1878662109375, + "y": 0.919921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12502, + "pitch": null, + "reason": null, + "target": { + "x": 1.9024658203125, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12504, + "target": { + "x": 43.303466796875, + "y": 53.9716796875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12504, + "sequence": 1172, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12505, + "pitch": null, + "reason": null, + "target": { + "x": 2.214111328125, + "y": 0.899658203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12505, + "pitch": null, + "reason": null, + "target": { + "x": 1.843505859375, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12506, + "pitch": null, + "reason": null, + "target": { + "x": 1.5894775390625, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 68419586 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12506, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 68419586 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12506, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 295102, + "y": 446965, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12506, + "otherUnit": null, + "sequence": 1463, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12506, + "pitch": null, + "reason": null, + "target": { + "x": 1.7945556640625, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12508, + "pitch": null, + "reason": null, + "target": { + "x": 1.549560546875, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12508, + "mask": { + "Mask": { + "Count": 24, + "Data": "0x1fd258" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12508, + "pitch": null, + "reason": null, + "target": { + "x": 1.741943359375, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12509, + "pitch": null, + "reason": null, + "target": { + "x": 1.4775390625, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12510, + "pitch": null, + "reason": null, + "target": { + "x": 1.6976318359375, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12512, + "pitch": null, + "reason": null, + "target": { + "x": 1.4039306640625, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12512, + "pitch": null, + "reason": null, + "target": { + "x": 1.865478515625, + "y": 3.0899658203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 1835012, + 117702669 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x14" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12512, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 1835012, + 117702669 + ], + "removeMask": { + "Mask": { + "Count": 10, + "Data": "0x8200" + } + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12512, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12513, + "pitch": null, + "reason": null, + "target": { + "x": 1.350341796875, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 1835012, + 117702669 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0c" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12513, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12513, + "pitch": null, + "reason": null, + "target": { + "x": 1.9197998046875, + "y": 3.0704345703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 107216905, + 126091269 + ], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x60" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12513, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 107216905, + 126091269 + ], + "removeMask": { + "Mask": { + "Count": 11, + "Data": "0x0600" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12513, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 107216905, + 126091269 + ], + "removeMask": { + "OneIndices": [ + 18, + 21 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12513, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12513, + "pitch": null, + "reason": null, + "target": { + "x": 1.6580810546875, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12515, + "pitch": null, + "reason": null, + "target": { + "x": 1.3111572265625, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12515, + "target": { + "x": 40.9173583984375, + "y": 51.98095703125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12515, + "sequence": 1173, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12515, + "pitch": null, + "reason": null, + "target": { + "x": 1.622802734375, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12516, + "pitch": null, + "reason": null, + "target": { + "x": 1.2447509765625, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12516, + "pitch": null, + "reason": null, + "target": { + "x": 1.9605712890625, + "y": 3.056640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 131596292, + 135266308 + ], + "removeMask": { + "Mask": { + "Count": 9, + "Data": "0x8100" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12516, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 131596292, + 135266308 + ], + "removeMask": { + "Mask": { + "Count": 13, + "Data": "0x0c00" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12516, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 131596292, + 135266308 + ], + "removeMask": { + "OneIndices": [ + 22, + 24 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12516, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12516, + "mask": { + "Mask": { + "Count": 25, + "Data": "0x76a90301" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 90177548 + ], + "removeMask": { + "OneIndices": [ + 13 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12516, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 90177548 + ], + "removeMask": { + "OneIndices": [ + 25 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12516, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12516, + "pitch": null, + "reason": null, + "target": { + "x": 1.585693359375, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12517, + "pitch": null, + "reason": null, + "target": { + "x": 1.2078857421875, + "y": 2.8731689453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 90177548 + ], + "removeMask": { + "OneIndices": [ + 9 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12517, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 137887747, + 138936322 + ], + "removeMask": { + "Mask": { + "Count": 16, + "Data": "0x0c00" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12517, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 137887747, + 138936322 + ], + "removeMask": { + "OneIndices": [ + 26, + 27 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12517, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 137887747, + 138936322 + ], + "removeMask": { + "Mask": { + "Count": 12, + "Data": "0x0c00" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12519, + "userid": { + "userId": 2 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12519, + "mask": { + "Mask": { + "Count": 27, + "Data": "0x74934e00" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12519, + "pitch": null, + "reason": null, + "target": { + "x": 1.54150390625, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 140247042, + 140509186 + ], + "removeMask": { + "Mask": { + "Count": 14, + "Data": "0x0c00" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12520, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12520, + "pitch": null, + "reason": null, + "target": { + "x": 1.375, + "y": 3.03271484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 140247042, + 140509186 + ], + "removeMask": { + "OneIndices": [ + 16, + 17 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12520, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 1, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 140247042, + 140509186 + ], + "removeMask": { + "OneIndices": [ + 28, + 29 + ] + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12520, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12520, + "pitch": null, + "reason": null, + "target": { + "x": 1.4970703125, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12521, + "mask": { + "Mask": { + "Count": 27, + "Data": "0x74934e00" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12523, + "pitch": null, + "reason": null, + "target": { + "x": 1.9920654296875, + "y": 3.0662841796875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12523, + "target": { + "x": 22.1961669921875, + "y": 46.58203125, + "z": 4.9971923828125 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12523, + "sequence": 1174, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 20, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 73 + }, + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + }, + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + }, + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 27262981, + 84672519, + 87293957, + 103022598, + 104857607, + 115343372, + 115605525, + 118226946, + 120061957, + 123207689, + 124518411, + 125304839, + 126353409, + 126615570, + 127401990, + 127926276, + 128450563, + 129499138, + 130023430, + 130285574, + 93585413, + 109576193, + 109838337, + 141557761, + 141819905, + 121896962, + 122683402, + 132120583, + 132644868, + 66584580, + 82575361, + 112459783, + 120848385, + 121110529, + 68943876 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12523, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12523, + "pitch": null, + "reason": null, + "target": { + "x": 1.4456787109375, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12524, + "pitch": null, + "reason": null, + "target": { + "x": 1.3936767578125, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12526, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12527, + "target": { + "x": 23.0924072265625, + "y": 46.62353515625, + "z": 4.9969482421875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12527, + "sequence": 1175, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12527, + "pitch": null, + "reason": null, + "target": { + "x": 1.335693359375, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12530, + "pitch": null, + "reason": null, + "target": { + "x": 1.419677734375, + "y": 3.0322265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12530, + "pitch": null, + "reason": null, + "target": { + "x": 1.2791748046875, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12531, + "pitch": null, + "reason": null, + "target": { + "x": 1.6251220703125, + "y": 3.0322265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12531, + "target": { + "x": 34.827880859375, + "y": 55.2764892578125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12531, + "sequence": 1464, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12531, + "pitch": null, + "reason": null, + "target": { + "x": 1.2275390625, + "y": 2.8731689453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12534, + "target": { + "x": 25.9578857421875, + "y": 47.538330078125, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12534, + "sequence": 1176, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12534, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12534, + "otherUnit": null, + "sequence": 1465, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + } + ], + "addUnitTags": [ + 132644868 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12535, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 115343372, + 128450563, + 129499138, + 66584580, + 120848385 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12539, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 285079, + "y": 405383, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12541, + "otherUnit": null, + "sequence": 1466, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 236539, + "y": 401438, + "z": 39158 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12550, + "otherUnit": null, + "sequence": 1177, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12552, + "pitch": null, + "reason": null, + "target": { + "x": 2.1131591796875, + "y": 3.1590576171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12553, + "userid": { + "userId": 1 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12553, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12553, + "pitch": null, + "reason": null, + "target": { + "x": 2.1131591796875, + "y": 3.2218017578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + } + ], + "addUnitTags": [ + 116654083 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12553, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12554, + "pitch": null, + "reason": null, + "target": { + "x": 1.7166748046875, + "y": 3.0322265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12556, + "pitch": null, + "reason": null, + "target": { + "x": 1.8463134765625, + "y": 3.0322265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12557, + "pitch": null, + "reason": null, + "target": { + "x": 2.2647705078125, + "y": 3.3477783203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12557, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12557, + "pitch": null, + "reason": null, + "target": { + "x": 1.9410400390625, + "y": 3.0322265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 28049413, + 93323283, + 115867655, + 130809864, + 131072005, + 135528449, + 135790594, + 136314881, + 136577026, + 137625601, + 138149889, + 138412033, + 140771330 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12560, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12560, + "otherUnit": null, + "sequence": 1178, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12561, + "pitch": null, + "reason": null, + "target": { + "x": 2.0247802734375, + "y": 3.1041259765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 28049413 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12561, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12564, + "pitch": null, + "reason": null, + "target": { + "x": 2.051513671875, + "y": 3.142822265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + }, + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 87293957, + 115343372, + 115605525, + 120061957, + 124518411, + 125304839, + 126353409, + 127401990, + 127926276, + 128450563, + 129499138, + 130285574, + 109576193, + 109838337, + 122683402, + 66584580, + 82575361, + 112459783, + 120848385, + 121110529 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12565, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12565, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12567, + "pitch": null, + "reason": null, + "target": { + "x": 2.076416015625, + "y": 3.1802978515625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12567, + "sequence": 1179, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12567, + "sequence": 1180, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12568, + "sequence": 1181, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 93323283, + 115867655 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12568, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 130809864 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12569, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12569, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12571, + "mask": { + "Mask": { + "Count": 27, + "Data": "0x74934e00" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12571, + "otherUnit": null, + "sequence": 1467, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 290207, + "y": 392338, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12573, + "otherUnit": null, + "sequence": 1182, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12576, + "pitch": null, + "reason": null, + "target": { + "x": 2.1131591796875, + "y": 3.2669677734375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12578, + "pitch": null, + "reason": null, + "target": { + "x": 1.19677734375, + "y": 2.935546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12578, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12578, + "pitch": null, + "reason": null, + "target": { + "x": 2.1131591796875, + "y": 3.3226318359375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 336874, + "y": 484424, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12579, + "otherUnit": null, + "sequence": 1469, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12580, + "pitch": null, + "reason": null, + "target": { + "x": 1.2711181640625, + "y": 3.010009765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12582, + "pitch": null, + "reason": null, + "target": { + "x": 1.3406982421875, + "y": 3.021240234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12582, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 38.75, + "y": 57.25, + "z": 4 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 113508353, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12582, + "sequence": 1470, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12583, + "pitch": null, + "reason": null, + "target": { + "x": 1.40869140625, + "y": 3.021240234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12583, + "pitch": null, + "reason": null, + "target": { + "x": 2.2393798828125, + "y": 3.322998046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 10, + "Data": "0xb201" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12584, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12586, + "pitch": null, + "reason": null, + "target": { + "x": 1.4759521484375, + "y": 3.021240234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12587, + "pitch": null, + "reason": null, + "target": { + "x": 1.5430908203125, + "y": 3.021240234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12587, + "pitch": null, + "reason": null, + "target": { + "x": 2.2122802734375, + "y": 3.2998046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12587, + "pitch": null, + "reason": null, + "target": { + "x": 1.22998046875, + "y": 2.9117431640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12588, + "mask": { + "Mask": { + "Count": 27, + "Data": "0x74934e00" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 304281, + "y": 456967, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12588, + "otherUnit": null, + "sequence": 1471, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12590, + "pitch": null, + "reason": null, + "target": { + "x": 1.6231689453125, + "y": 3.021240234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12590, + "pitch": null, + "reason": null, + "target": { + "x": 1.2724609375, + "y": 2.9398193359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12591, + "pitch": null, + "reason": null, + "target": { + "x": 1.6959228515625, + "y": 3.08203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": 9845, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12591, + "pitch": null, + "reason": null, + "target": { + "x": 2.1807861328125, + "y": 3.27197265625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 305330, + "y": 459051, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12591, + "otherUnit": null, + "sequence": 1472, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12591, + "pitch": null, + "reason": null, + "target": { + "x": 1.3096923828125, + "y": 2.95556640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12593, + "pitch": null, + "reason": null, + "target": { + "x": 1.7247314453125, + "y": 3.11083984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 18, + "Data": "0x5ff703" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12593, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 237969, + "y": 424448, + "z": 40912 + }, + "snapshotUnitLink": 503, + "snapshotUpkeepPlayerId": 2, + "tag": 121896962, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12594, + "otherUnit": null, + "sequence": 1183, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12594, + "target": { + "x": 37.20703125, + "y": 56.07080078125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12594, + "sequence": 1473, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12594, + "pitch": null, + "reason": null, + "target": { + "x": 1.3485107421875, + "y": 2.968505859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12595, + "pitch": null, + "reason": null, + "target": { + "x": 1.7679443359375, + "y": 3.1412353515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": 12476, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12595, + "pitch": null, + "reason": null, + "target": { + "x": 2.14111328125, + "y": 3.2344970703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12595, + "pitch": null, + "reason": null, + "target": { + "x": 1.405517578125, + "y": 2.9873046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12597, + "target": { + "x": 28.676513671875, + "y": 52.0234375, + "z": 4.9940185546875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12597, + "sequence": 1184, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 123 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12597, + "otherUnit": null, + "sequence": 1474, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12598, + "pitch": null, + "reason": null, + "target": { + "x": 1.4583740234375, + "y": 3.00634765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12599, + "pitch": null, + "reason": null, + "target": { + "x": 1.5068359375, + "y": 3.0255126953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": 13426, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12601, + "pitch": null, + "reason": null, + "target": { + "x": 2.1103515625, + "y": 3.2239990234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12601, + "pitch": null, + "reason": null, + "target": { + "x": 1.53857421875, + "y": 3.0386962890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 237969, + "y": 424448, + "z": 40912 + }, + "snapshotUnitLink": 503, + "snapshotUpkeepPlayerId": 2, + "tag": 121896962, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12602, + "otherUnit": null, + "sequence": 1185, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12602, + "pitch": null, + "reason": null, + "target": { + "x": 1.585693359375, + "y": 3.05908203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 307873, + "y": 460528, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12604, + "otherUnit": null, + "sequence": 1475, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12604, + "pitch": null, + "reason": null, + "target": { + "x": 1.617919921875, + "y": 3.0733642578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12605, + "pitch": null, + "reason": null, + "target": { + "x": 1.66845703125, + "y": 3.0960693359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12606, + "pitch": null, + "reason": null, + "target": { + "x": 2.0743408203125, + "y": 3.21728515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12606, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 112197642 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12608, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12608, + "pitch": null, + "reason": null, + "target": { + "x": 1.71875, + "y": 3.118896484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12609, + "pitch": null, + "reason": null, + "target": { + "x": 2.1131591796875, + "y": 3.3748779296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12609, + "otherUnit": null, + "sequence": 1476, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12609, + "pitch": null, + "reason": null, + "target": { + "x": 1.7598876953125, + "y": 3.1375732421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 1835012, + 68419586, + 90177548, + 107216905, + 117702669, + 126091269, + 131334149, + 131596292, + 135266308, + 137887747, + 138936322, + 140247042, + 140509186 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12610, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12610, + "pitch": null, + "reason": null, + "target": { + "x": 2.16650390625, + "y": 3.42822265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 292430, + "y": 403718, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12612, + "otherUnit": null, + "sequence": 1186, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12613, + "pitch": null, + "reason": null, + "target": { + "x": 2.123779296875, + "y": 3.2177734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12613, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12614, + "pitch": null, + "reason": null, + "target": { + "x": 2.15625, + "y": 3.243896484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12616, + "pitch": null, + "reason": null, + "target": { + "x": 2.1807861328125, + "y": 3.267822265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12616, + "pitch": null, + "reason": null, + "target": { + "x": 2.089599609375, + "y": 3.1807861328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 322697, + "y": 507102, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12616, + "otherUnit": null, + "sequence": 1477, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12617, + "pitch": null, + "reason": null, + "target": { + "x": 2.1065673828125, + "y": 3.2352294921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12617, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 40.25, + "y": 53.75, + "z": 4 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 123731969, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12617, + "sequence": 1187, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12617, + "pitch": null, + "reason": null, + "target": { + "x": 2.1307373046875, + "y": 3.221923828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12617, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.497802734375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12617, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.5384521484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12619, + "pitch": null, + "reason": null, + "target": { + "x": 2.2056884765625, + "y": 3.2930908203125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 327520, + "y": 509480, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12620, + "otherUnit": null, + "sequence": 1478, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12623, + "pitch": null, + "reason": null, + "target": { + "x": 2.1358642578125, + "y": 3.2532958984375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12623, + "target": { + "x": 38.461181640625, + "y": 55.82373046875, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12623, + "sequence": 1188, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12623, + "target": { + "x": 39.718994140625, + "y": 61.7637939453125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12623, + "sequence": 1479, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12625, + "sequence": 1189, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12628, + "mask": { + "Mask": { + "Count": 27, + "Data": "0x74934e00" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 321896, + "y": 496402, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12628, + "otherUnit": null, + "sequence": 1480, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12630, + "pitch": null, + "reason": null, + "target": { + "x": 2.1597900390625, + "y": 3.2772216796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 321731, + "y": 495127, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12631, + "otherUnit": null, + "sequence": 1481, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 316526, + "y": 456601, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12632, + "otherUnit": null, + "sequence": 1190, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12634, + "pitch": null, + "reason": null, + "target": { + "x": 2.1845703125, + "y": 3.302001953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12635, + "pitch": null, + "reason": null, + "target": { + "x": 2.216064453125, + "y": 3.221923828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12636, + "pitch": null, + "reason": null, + "target": { + "x": 2.361328125, + "y": 3.221923828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 301806, + "y": 499892, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12636, + "otherUnit": null, + "sequence": 1482, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12638, + "pitch": null, + "reason": null, + "target": { + "x": 1.827880859375, + "y": 3.1412353515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12638, + "pitch": null, + "reason": null, + "target": { + "x": 2.2130126953125, + "y": 3.33349609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12639, + "pitch": null, + "reason": null, + "target": { + "x": 1.861572265625, + "y": 3.1412353515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12640, + "pitch": null, + "reason": null, + "target": { + "x": 1.8935546875, + "y": 3.1412353515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 294560, + "y": 499486, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12640, + "otherUnit": null, + "sequence": 1483, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12642, + "pitch": null, + "reason": null, + "target": { + "x": 1.9503173828125, + "y": 3.1412353515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12642, + "pitch": null, + "reason": null, + "target": { + "x": 2.237060546875, + "y": 3.35595703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12643, + "pitch": null, + "reason": null, + "target": { + "x": 2.0230712890625, + "y": 3.1531982421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 79429638, + 100401155, + 108003330 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12643, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12645, + "pitch": null, + "reason": null, + "target": { + "x": 2.053466796875, + "y": 3.18359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 355033, + "y": 420635, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12645, + "otherUnit": null, + "sequence": 1191, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 290715, + "y": 500801, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12645, + "otherUnit": null, + "sequence": 1484, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12646, + "pitch": null, + "reason": null, + "target": { + "x": 1.799560546875, + "y": 3.141357421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12647, + "pitch": null, + "reason": null, + "target": { + "x": 2.122314453125, + "y": 3.25244140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12647, + "pitch": null, + "reason": null, + "target": { + "x": 2.1639404296875, + "y": 3.2939453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": 11807, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12647, + "pitch": null, + "reason": null, + "target": { + "x": 2.2685546875, + "y": 3.3883056640625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12647, + "pitch": null, + "reason": null, + "target": { + "x": 2.2291259765625, + "y": 3.3170166015625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12647, + "pitch": null, + "reason": null, + "target": { + "x": 2.361328125, + "y": 3.316650390625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12647, + "pitch": null, + "reason": null, + "target": { + "x": 2.361328125, + "y": 3.4715576171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12649, + "pitch": null, + "reason": null, + "target": { + "x": 2.19189453125, + "y": 3.322021484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12649, + "pitch": null, + "reason": null, + "target": { + "x": 2.361328125, + "y": 3.503173828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 290389, + "y": 498879, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12649, + "otherUnit": null, + "sequence": 1485, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12649, + "pitch": null, + "reason": null, + "target": { + "x": 1.8416748046875, + "y": 3.14404296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12650, + "pitch": null, + "reason": null, + "target": { + "x": 2.2215576171875, + "y": 3.333251953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": 10414, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12650, + "pitch": null, + "reason": null, + "target": { + "x": 2.2978515625, + "y": 3.4234619140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12650, + "pitch": null, + "reason": null, + "target": { + "x": 1.881591796875, + "y": 3.1541748046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": 9660, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12651, + "pitch": null, + "reason": null, + "target": { + "x": 2.3203125, + "y": 3.4603271484375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12651, + "pitch": null, + "reason": null, + "target": { + "x": 2.2569580078125, + "y": 3.341064453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 128 + }, + { + "count": 16, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 110624773, + 52428801, + 52690945, + 52953089, + 53739524, + 57671682, + 58982401, + 73662467, + 80216068, + 87818243, + 93061123, + 100139011, + 103546884, + 103809027, + 107479043, + 108265474, + 128712707 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12651, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12653, + "target": { + "x": 41.4696044921875, + "y": 56.1358642578125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12653, + "sequence": 1192, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 288057, + "y": 498380, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12653, + "otherUnit": null, + "sequence": 1486, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12653, + "pitch": null, + "reason": null, + "target": { + "x": 1.9296875, + "y": 3.1737060546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": 9189, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12654, + "pitch": null, + "reason": null, + "target": { + "x": 2.3360595703125, + "y": 3.4962158203125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12654, + "pitch": null, + "reason": null, + "target": { + "x": 2.278564453125, + "y": 3.36474609375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12655, + "target": { + "x": 41.13671875, + "y": 55.947509765625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12655, + "sequence": 1193, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12655, + "pitch": null, + "reason": null, + "target": { + "x": 1.977294921875, + "y": 3.19677734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12657, + "pitch": null, + "reason": null, + "target": { + "x": 2.30078125, + "y": 3.404052734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 287318, + "y": 496402, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12657, + "otherUnit": null, + "sequence": 1487, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12657, + "pitch": null, + "reason": null, + "target": { + "x": 2.0284423828125, + "y": 3.2237548828125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12658, + "pitch": null, + "reason": null, + "target": { + "x": 2.3382568359375, + "y": 3.5330810546875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12658, + "pitch": null, + "reason": null, + "target": { + "x": 2.361328125, + "y": 3.38623046875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12658, + "pitch": null, + "reason": null, + "target": { + "x": 2.07763671875, + "y": 3.2509765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12660, + "pitch": null, + "reason": null, + "target": { + "x": 2.2215576171875, + "y": 3.365234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12660, + "pitch": null, + "reason": null, + "target": { + "x": 2.361328125, + "y": 3.3514404296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12660, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 37.1328125, + "y": 52.46875, + "z": 4 + }, + "snapshotUnitLink": 125, + "snapshotUpkeepPlayerId": 1, + "tag": 73924615, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12660, + "sequence": 1194, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12661, + "pitch": null, + "reason": null, + "target": { + "x": 2.2215576171875, + "y": 3.4300537109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12661, + "pitch": null, + "reason": null, + "target": { + "x": 2.3172607421875, + "y": 3.438232421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 283133, + "y": 495516, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12661, + "otherUnit": null, + "sequence": 1488, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12661, + "pitch": null, + "reason": null, + "target": { + "x": 2.130615234375, + "y": 3.2811279296875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12661, + "pitch": null, + "reason": null, + "target": { + "x": 2.1593017578125, + "y": 3.2974853515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12662, + "pitch": null, + "reason": null, + "target": { + "x": 2.2215576171875, + "y": 3.4676513671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12662, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12664, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12664, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12664, + "pitch": null, + "reason": null, + "target": { + "x": 2.1976318359375, + "y": 3.3216552734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12665, + "pitch": null, + "reason": null, + "target": { + "x": 2.3397216796875, + "y": 3.5653076171875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 11 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12665, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12665, + "pitch": null, + "reason": null, + "target": { + "x": 2.2210693359375, + "y": 3.344970703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 79429638, + 100401155, + 108003330 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12666, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12666, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12668, + "target": { + "x": 35.5081787109375, + "y": 54.6949462890625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12668, + "sequence": 1195, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12668, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.469970703125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12668, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12669, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12669, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.3875732421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12669, + "pitch": null, + "reason": null, + "target": { + "x": 2.234619140625, + "y": 3.382080078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12671, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12672, + "pitch": null, + "reason": null, + "target": { + "x": 2.2327880859375, + "y": 3.415283203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12673, + "pitch": null, + "reason": null, + "target": { + "x": 2.3480224609375, + "y": 3.5989990234375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12673, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12675, + "target": { + "x": 33.3482666015625, + "y": 54.9703369140625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12675, + "sequence": 1196, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12675, + "target": { + "x": 34.349609375, + "y": 54.9866943359375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12675, + "sequence": 1489, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12675, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 3.450439453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x40" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12676, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12677, + "target": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 34, + "y": 54.75, + "z": 4 + }, + "snapshotUnitLink": 343, + "snapshotUpkeepPlayerId": 0, + "tag": 25690113, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12677, + "sequence": 1197, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12677, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12677, + "otherUnit": null, + "sequence": 1490, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + } + ], + "addUnitTags": [ + 127926276, + 122683402 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12681, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 330803, + "y": 455824, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12681, + "otherUnit": null, + "sequence": 1491, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12683, + "pitch": null, + "reason": null, + "target": { + "x": 2.3359375, + "y": 3.464111328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 82, + "unitLink": 29 + } + ], + "addUnitTags": [ + 1835012, + 68419586, + 90177548, + 107216905, + 117702669, + 126091269, + 131334149, + 131596292, + 135266308, + 137887747, + 138936322, + 140509186 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12684, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12684, + "target": { + "x": 41.1236572265625, + "y": 56.5328369140625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12684, + "sequence": 1492, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12686, + "pitch": null, + "reason": null, + "target": { + "x": 2.3720703125, + "y": 3.5780029296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12688, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12690, + "target": { + "x": 37.7989501953125, + "y": 56.0499267578125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12690, + "sequence": 1198, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12691, + "userid": { + "userId": 0 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12694, + "target": { + "x": 37.7484130859375, + "y": 56.1058349609375, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12694, + "sequence": 1199, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 125304839, + 127401990, + 82575361, + 121110529 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12694, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12695, + "pitch": null, + "reason": null, + "target": { + "x": 2.3765869140625, + "y": 3.5435791015625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12695, + "target": { + "x": 35.5093994140625, + "y": 61.05419921875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12695, + "sequence": 1493, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12695, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.43408203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12697, + "target": { + "x": 37.688232421875, + "y": 56.337890625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12697, + "sequence": 1200, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12697, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.4735107421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12699, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 37.3553466796875, + "y": 57.0838623046875, + "z": 4 + }, + "snapshotUnitLink": 126, + "snapshotUpkeepPlayerId": 1, + "tag": 93061123, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12699, + "sequence": 1201, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12702, + "pitch": null, + "reason": null, + "target": { + "x": 2.364501953125, + "y": 3.5135498046875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12702, + "target": { + "x": 37.382080078125, + "y": 59.5159912109375, + "z": 4.01123046875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12702, + "sequence": 1202, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12705, + "target": { + "x": 37.5174560546875, + "y": 58.7803955078125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12705, + "sequence": 1203, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 124518411 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12706, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12709, + "mask": { + "Mask": { + "Count": 29, + "Data": "0x74936e04" + } + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12709, + "target": { + "x": 39.9031982421875, + "y": 59.79345703125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12709, + "sequence": 1494, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12712, + "mask": { + "Mask": { + "Count": 19, + "Data": "0x410300" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12713, + "pitch": null, + "reason": null, + "target": { + "x": 2.343505859375, + "y": 3.489501953125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12713, + "pitch": null, + "reason": null, + "target": { + "x": 2.361328125, + "y": 3.49365234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x40" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12713, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 16, + "Data": "0xfcfd" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12717, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12718, + "target": { + "x": 32.951171875, + "y": 59.0654296875, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12718, + "sequence": 1495, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12721, + "pitch": null, + "reason": null, + "target": { + "x": 2.248779296875, + "y": 3.49560546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12723, + "pitch": null, + "reason": null, + "target": { + "x": 2.283935546875, + "y": 3.49560546875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12723, + "mask": { + "Mask": { + "Count": 19, + "Data": "0x410300" + } + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 317440, + "y": 468992, + "z": 32768 + }, + "snapshotUnitLink": 110, + "snapshotUpkeepPlayerId": 1, + "tag": 113508353, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12725, + "otherUnit": null, + "sequence": 1496, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12728, + "target": { + "x": 37.7647705078125, + "y": 59.1767578125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12728, + "sequence": 1205, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12731, + "pitch": null, + "reason": null, + "target": { + "x": 2.2454833984375, + "y": 3.4801025390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12733, + "target": { + "x": 37.241455078125, + "y": 58.98193359375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12733, + "sequence": 1206, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12735, + "pitch": null, + "reason": null, + "target": { + "x": 2.2747802734375, + "y": 3.491943359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12738, + "target": { + "x": 40.6365966796875, + "y": 59.30126953125, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12738, + "sequence": 1497, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12739, + "pitch": null, + "reason": null, + "target": { + "x": 2.3270263671875, + "y": 3.4625244140625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12739, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12740, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 37.72216796875, + "y": 57.89501953125, + "z": 5.87841796875 + }, + "snapshotUnitLink": 726, + "snapshotUpkeepPlayerId": 2, + "tag": 109838337, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12740, + "sequence": 1207, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12740, + "otherUnit": null, + "sequence": 1498, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 8, + "Data": "0x80" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12743, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12744, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 125304839, + 127401990, + 82575361, + 121110529 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12744, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 290131, + "y": 474626, + "z": 48158 + }, + "snapshotUnitLink": 76, + "snapshotUpkeepPlayerId": 2, + "tag": 82575361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12747, + "otherUnit": null, + "sequence": 1499, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12749, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12750, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12751, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 387 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12753, + "otherUnit": null, + "sequence": 1500, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 296697, + "y": 458245, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12754, + "otherUnit": null, + "sequence": 1501, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12755, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12757, + "pitch": null, + "reason": null, + "target": { + "x": 2.35107421875, + "y": 3.4842529296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12757, + "target": { + "x": 35.9727783203125, + "y": 55.6988525390625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12757, + "sequence": 1502, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x08" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12758, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 8 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12758, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12758, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12759, + "pitch": null, + "reason": null, + "target": { + "x": 2.2935791015625, + "y": 3.42919921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 2, + "abilLink": 130 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 294390, + "y": 466903, + "z": 48128 + }, + "snapshotUnitLink": 76, + "snapshotUpkeepPlayerId": 2, + "tag": 82575361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12762, + "otherUnit": null, + "sequence": 1503, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12765, + "mask": { + "Mask": { + "Count": 20, + "Data": "0xd30706" + } + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12766, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12768, + "pitch": null, + "reason": null, + "target": { + "x": 2.28857421875, + "y": 3.462890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 127926276 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12769, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x3d" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12770, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 341662, + "y": 457172, + "z": 32842 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12770, + "otherUnit": null, + "sequence": 1504, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12772, + "target": { + "x": 40.1414794921875, + "y": 56.384033203125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12772, + "sequence": 1208, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12773, + "target": { + "x": 40.916259765625, + "y": 56.006103515625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12773, + "sequence": 1505, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12773, + "pitch": null, + "reason": null, + "target": { + "x": 2.2930908203125, + "y": 3.431884765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12775, + "target": { + "x": 39.869384765625, + "y": 55.2259521484375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12775, + "sequence": 1209, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12777, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12779, + "target": { + "x": 39.0096435546875, + "y": 54.8804931640625, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12779, + "sequence": 1210, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12781, + "target": { + "x": 35.853271484375, + "y": 53.475830078125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12781, + "sequence": 1211, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12784, + "pitch": null, + "reason": null, + "target": { + "x": 2.361328125, + "y": 3.3988037109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12784, + "pitch": null, + "reason": null, + "target": { + "x": 2.32666015625, + "y": 3.275634765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 3, + "abilLink": 38 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 320757, + "y": 455203, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12784, + "otherUnit": null, + "sequence": 1506, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12785, + "pitch": null, + "reason": null, + "target": { + "x": 2.1622314453125, + "y": 3.111328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12785, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12787, + "pitch": null, + "reason": null, + "target": { + "x": 2.1275634765625, + "y": 2.98486328125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12787, + "otherUnit": null, + "sequence": 1507, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12788, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12791, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 33.691162109375, + "y": 47.235595703125, + "z": 4 + }, + "snapshotUnitLink": 127, + "snapshotUpkeepPlayerId": 1, + "tag": 128712708, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12791, + "sequence": 1212, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12792, + "pitch": null, + "reason": null, + "target": { + "x": 2.3143310546875, + "y": 3.4898681640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 11, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 115605528, + 117178376, + 131072005, + 135528449, + 135790594, + 136314881, + 136577026, + 137625601, + 138149889, + 138412033, + 140771330 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12795, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12796, + "otherUnit": null, + "sequence": 1213, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12796, + "pitch": null, + "reason": null, + "target": { + "x": 2.1275634765625, + "y": 2.8585205078125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12798, + "pitch": null, + "reason": null, + "target": { + "x": 2.1275634765625, + "y": 2.719482421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 115605528 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12798, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 14, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 73 + }, + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + }, + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 27262981, + 77332482, + 79167493, + 81002500, + 84672519, + 103022598, + 104857607, + 123207689, + 125304839, + 126615570, + 127401990, + 127926276, + 129236999, + 130023430, + 93585413, + 107216906, + 109576193, + 109838337, + 141557761, + 141819905, + 122683402, + 132120583, + 66584580, + 82575361, + 112459783, + 120848385, + 121110529, + 68943876 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12798, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12798, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12799, + "pitch": null, + "reason": null, + "target": { + "x": 2.1275634765625, + "y": 2.6878662109375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12800, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.4317626953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12802, + "sequence": 1214, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12802, + "sequence": 1215, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12802, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.377197265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12803, + "sequence": 1216, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12803, + "pitch": null, + "reason": null, + "target": { + "x": 2.1275634765625, + "y": 2.75732421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 117178376, + 131072005 + ], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x06" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12803, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12803, + "sequence": 1217, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12803, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.2808837890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12805, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 2.89013671875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 135528449, + 135790594 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x18" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12805, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12805, + "sequence": 1218, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12805, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.2264404296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12806, + "pitch": null, + "reason": null, + "target": { + "x": 2.2867431640625, + "y": 3.4739990234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12806, + "sequence": 1219, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12806, + "sequence": 1220, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12806, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 3.0859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 136314881 + ], + "removeMask": { + "Mask": { + "Count": 6, + "Data": "0x20" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12806, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12806, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12807, + "sequence": 1221, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12807, + "sequence": 1222, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12807, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.124267578125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12807, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.0814208984375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12809, + "pitch": null, + "reason": null, + "target": { + "x": 2.258544921875, + "y": 3.4544677734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12809, + "sequence": 1223, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 136577026 + ], + "removeMask": { + "Mask": { + "Count": 7, + "Data": "0x40" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12809, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12809, + "sequence": 1508, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12809, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.0291748046875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12810, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 2.93115234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12810, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 2.9305419921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12811, + "pitch": null, + "reason": null, + "target": { + "x": 2.2332763671875, + "y": 3.422119140625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12811, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 2.8016357421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12811, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 2.87841796875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12813, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 2.646728515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12813, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 123 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12814, + "otherUnit": null, + "sequence": 1509, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12817, + "pitch": null, + "reason": null, + "target": { + "x": 2.216796875, + "y": 3.3917236328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 288218, + "y": 406626, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12817, + "otherUnit": null, + "sequence": 1510, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12820, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12821, + "pitch": null, + "reason": null, + "target": { + "x": 2.240478515625, + "y": 3.413330078125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 53739528, + 73924616, + 80740358, + 115343375, + 121896965, + 126091270, + 128450564 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12821, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12821, + "otherUnit": null, + "sequence": 1511, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12824, + "pitch": null, + "reason": null, + "target": { + "x": 2.265380859375, + "y": 3.438232421875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12825, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 2.83544921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12825, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 2.7926025390625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12826, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 2.738037109375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12828, + "pitch": null, + "reason": null, + "target": { + "x": 2.2791748046875, + "y": 3.470947265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12829, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 2.8048095703125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12831, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 2.9500732421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12832, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 3.21240234375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 12, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 55574529, + 57147393, + 77070339, + 78905348, + 80478209, + 94633986, + 114294785, + 115081217, + 129761285, + 130547715, + 133693441 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12832, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12833, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 3.3387451171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12833, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 252336, + "y": 350695, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12833, + "otherUnit": null, + "sequence": 1512, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12835, + "mask": { + "Mask": { + "Count": 30, + "Data": "0xfed3ff3d" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12835, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 3.42724609375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12836, + "target": { + "x": 29.2806396484375, + "y": 41.4908447265625, + "z": 4.0477294921875 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12836, + "sequence": 1513, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12837, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12837, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12837, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12839, + "pitch": null, + "reason": null, + "target": { + "x": 2.2857666015625, + "y": 3.502197265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12839, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 3.4747314453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12839, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 1, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12840, + "mask": { + "Mask": { + "Count": 30, + "Data": "0xfed3ff3f" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12840, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 3.5125732421875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12842, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 2.6846923828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12843, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12843, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 2.617431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12846, + "target": { + "snapshotControlPlayerId": 2, + "snapshotPoint": { + "x": 30.1795654296875, + "y": 41.3941650390625, + "z": 4.0059814453125 + }, + "snapshotUnitLink": 75, + "snapshotUpkeepPlayerId": 2, + "tag": 132120583, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12846, + "sequence": 1514, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12847, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12848, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12850, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12852, + "otherUnit": null, + "sequence": 1515, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12854, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 3.37353515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12854, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12855, + "pitch": null, + "reason": null, + "target": { + "x": 2.11669921875, + "y": 2.617431640625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12859, + "pitch": null, + "reason": null, + "target": { + "x": 2.11669921875, + "y": 2.574462890625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12859, + "pitch": null, + "reason": null, + "target": { + "x": 2.11669921875, + "y": 2.528076171875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 255195, + "y": 315064, + "z": 32804 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12861, + "otherUnit": null, + "sequence": 1516, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12862, + "pitch": null, + "reason": null, + "target": { + "x": 2.363037109375, + "y": 3.5157470703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12862, + "pitch": null, + "reason": null, + "target": { + "x": 2.294189453125, + "y": 3.471923828125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12863, + "pitch": null, + "reason": null, + "target": { + "x": 2.2254638671875, + "y": 3.3419189453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12865, + "pitch": null, + "reason": null, + "target": { + "x": 2.361572265625, + "y": 3.5584716796875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12865, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12865, + "pitch": null, + "reason": null, + "target": { + "x": 2.190673828125, + "y": 3.1903076171875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12866, + "pitch": null, + "reason": null, + "target": { + "x": 2.2935791015625, + "y": 3.3963623046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12866, + "pitch": null, + "reason": null, + "target": { + "x": 1.9600830078125, + "y": 2.9595947265625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12868, + "pitch": null, + "reason": null, + "target": { + "x": 2.252685546875, + "y": 3.3555908203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 125566992, + 137625601, + 138149889, + 138412033, + 140771330 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12869, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12870, + "sequence": 1224, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12872, + "pitch": null, + "reason": null, + "target": { + "x": 2.3599853515625, + "y": 3.59375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12872, + "userid": { + "userId": 2 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 125566992 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12872, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 6, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 73 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + } + ], + "addUnitTags": [ + 27262981, + 84672519, + 103022598, + 104857607, + 126615570, + 130023430, + 93585413, + 132120583 + ], + "removeMask": { + "Mask": { + "Count": 9, + "Data": "0x2300" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12872, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12873, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 267721, + "y": 349604, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12876, + "otherUnit": null, + "sequence": 1517, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12876, + "pitch": null, + "reason": null, + "target": { + "x": 2.28076171875, + "y": 3.4024658203125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12877, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12880, + "pitch": null, + "reason": null, + "target": { + "x": 2.23828125, + "y": 3.313232421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 287213, + "y": 396924, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12880, + "otherUnit": null, + "sequence": 1226, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12880, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12880, + "pitch": null, + "reason": null, + "target": { + "x": 2.263916015625, + "y": 3.3741455078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12881, + "pitch": null, + "reason": null, + "target": { + "x": 2.2015380859375, + "y": 3.2763671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12881, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0b" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12883, + "pitch": null, + "reason": null, + "target": { + "x": 2.1630859375, + "y": 3.238037109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12884, + "pitch": null, + "reason": null, + "target": { + "x": 2.0927734375, + "y": 3.1676025390625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12884, + "otherUnit": null, + "sequence": 1518, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12885, + "pitch": null, + "reason": null, + "target": { + "x": 2.0574951171875, + "y": 3.1324462890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12885, + "pitch": null, + "reason": null, + "target": { + "x": 2.24755859375, + "y": 3.3465576171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12887, + "pitch": null, + "reason": null, + "target": { + "x": 2.0223388671875, + "y": 3.09716796875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12887, + "pitch": null, + "reason": null, + "target": { + "x": 0.7618408203125, + "y": 3.3419189453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12887, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12888, + "pitch": null, + "reason": null, + "target": { + "x": 1.971923828125, + "y": 3.027587890625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12888, + "pitch": null, + "reason": null, + "target": { + "x": 2.2205810546875, + "y": 3.3116455078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12889, + "pitch": null, + "reason": null, + "target": { + "x": 2.2293701171875, + "y": 3.290771484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12891, + "pitch": null, + "reason": null, + "target": { + "x": 1.971923828125, + "y": 2.9532470703125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12891, + "pitch": null, + "reason": null, + "target": { + "x": 2.1976318359375, + "y": 3.285400390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12892, + "pitch": null, + "reason": null, + "target": { + "x": 1.971923828125, + "y": 2.88037109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 130 + } + ], + "addUnitTags": [ + 106430469 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12892, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12892, + "pitch": null, + "reason": null, + "target": { + "x": 2.1646728515625, + "y": 3.2479248046875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12894, + "pitch": null, + "reason": null, + "target": { + "x": 1.971923828125, + "y": 2.8436279296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12895, + "pitch": null, + "reason": null, + "target": { + "x": 2.1322021484375, + "y": 3.20703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12896, + "pitch": null, + "reason": null, + "target": { + "x": 1.971923828125, + "y": 2.7979736328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12896, + "pitch": null, + "reason": null, + "target": { + "x": 2.103759765625, + "y": 3.1617431640625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 8 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12898, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 103 + }, + "cmdFlags": 256, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 88064, + "y": 452608, + "z": 49104 + }, + "snapshotUnitLink": 122, + "snapshotUpkeepPlayerId": 1, + "tag": 49807361, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12899, + "otherUnit": null, + "sequence": 1227, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12899, + "pitch": null, + "reason": null, + "target": { + "x": 2.076416015625, + "y": 3.108642578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12899, + "pitch": null, + "reason": null, + "target": { + "x": 2.0638427734375, + "y": 3.079833984375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12902, + "pitch": null, + "reason": null, + "target": { + "x": 1.971923828125, + "y": 2.76123046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12902, + "pitch": null, + "reason": null, + "target": { + "x": 2.2293701171875, + "y": 3.358154296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12902, + "pitch": null, + "reason": null, + "target": { + "x": 2.0430908203125, + "y": 3.0263671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12903, + "pitch": null, + "reason": null, + "target": { + "x": 1.971923828125, + "y": 2.697998046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12903, + "pitch": null, + "reason": null, + "target": { + "x": 1.609375, + "y": 3.179931640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12903, + "pitch": null, + "reason": null, + "target": { + "x": 2.2293701171875, + "y": 3.396484375 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12903, + "pitch": null, + "reason": null, + "target": { + "x": 2.02685546875, + "y": 2.9788818359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12904, + "pitch": null, + "reason": null, + "target": { + "x": 1.971923828125, + "y": 2.6588134765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetUnit", + "id": 105, + "loop": 12904, + "target": { + "snapshotControlPlayerId": 1, + "snapshotPoint": { + "x": 25.75, + "y": 51.75, + "z": 4.994140625 + }, + "snapshotUnitLink": 108, + "snapshotUpkeepPlayerId": 1, + "tag": 60555265, + "targetUnitFlags": 111, + "timer": 0 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12904, + "sequence": 1228, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12904, + "pitch": null, + "reason": null, + "target": { + "x": 2.016845703125, + "y": 2.9473876953125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12906, + "pitch": null, + "reason": null, + "target": { + "x": 1.971923828125, + "y": 2.6236572265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + }, + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 76 + } + ], + "addUnitTags": [ + 125304839, + 109576193, + 66584580, + 82575361, + 112459783, + 120848385, + 121110529 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12906, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 72, + "unitLink": 726 + } + ], + "addUnitTags": [ + 109576193 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12907, + "userid": { + "userId": 1 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12907, + "pitch": null, + "reason": null, + "target": { + "x": 2.0052490234375, + "y": 2.9053955078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12909, + "pitch": null, + "reason": null, + "target": { + "x": 1.6376953125, + "y": 3.072509765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12909, + "pitch": null, + "reason": null, + "target": { + "x": 1.99560546875, + "y": 2.85986328125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12910, + "pitch": null, + "reason": null, + "target": { + "x": 1.8936767578125, + "y": 2.78173828125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12911, + "pitch": null, + "reason": null, + "target": { + "x": 1.8936767578125, + "y": 2.7027587890625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 292952, + "y": 454692, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12911, + "otherUnit": null, + "sequence": 1519, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12911, + "pitch": null, + "reason": null, + "target": { + "x": 1.989013671875, + "y": 2.8167724609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12913, + "pitch": null, + "reason": null, + "target": { + "x": 1.984130859375, + "y": 2.7757568359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12914, + "userid": { + "userId": 2 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 123 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12915, + "otherUnit": null, + "sequence": 1520, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12915, + "pitch": null, + "reason": null, + "target": { + "x": 1.9803466796875, + "y": 2.7344970703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 130547715 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12917, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12917, + "pitch": null, + "reason": null, + "target": { + "x": 1.97705078125, + "y": 2.6937255859375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12918, + "mask": { + "OneIndices": [ + 8 + ] + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12918, + "pitch": null, + "reason": null, + "target": { + "x": 1.9742431640625, + "y": 2.655517578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 88604681, + 101449733, + 128712708 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12921, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 306932, + "y": 378038, + "z": 33159 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12922, + "otherUnit": null, + "sequence": 1229, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12922, + "pitch": null, + "reason": null, + "target": { + "x": 1.971435546875, + "y": 2.6259765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12922, + "pitch": null, + "reason": null, + "target": { + "x": 1.971923828125, + "y": 2.624267578125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12924, + "pitch": null, + "reason": null, + "target": { + "x": 1.8936767578125, + "y": 2.8101806640625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12924, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12925, + "pitch": null, + "reason": null, + "target": { + "x": 2.0369873046875, + "y": 2.7445068359375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12925, + "pitch": null, + "reason": null, + "target": { + "x": 2.156005859375, + "y": 3.072509765625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12925, + "target": { + "x": 44.0382080078125, + "y": 55.837646484375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12925, + "sequence": 1230, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12926, + "pitch": null, + "reason": null, + "target": { + "x": 2.3013916015625, + "y": 3.2177734375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12928, + "pitch": null, + "reason": null, + "target": { + "x": 2.3013916015625, + "y": 3.2493896484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12929, + "target": { + "x": 42.1502685546875, + "y": 53.8682861328125, + "z": 3.9998779296875 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12929, + "sequence": 1231, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12932, + "pitch": null, + "reason": null, + "target": { + "x": 2.3013916015625, + "y": 3.3505859375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 65800, + "data": { + "TargetPoint": { + "x": 358884, + "y": 435866, + "z": 32781 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12932, + "otherUnit": null, + "sequence": 1521, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12933, + "pitch": null, + "reason": null, + "target": { + "x": 2.3013916015625, + "y": 3.4263916015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12935, + "pitch": null, + "reason": null, + "target": { + "x": 2.2490234375, + "y": 0.8106689453125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": 10372, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12936, + "pitch": null, + "reason": null, + "target": { + "x": 1.9881591796875, + "y": 2.6910400390625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 270974, + "y": 102328, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12936, + "otherUnit": null, + "sequence": 1522, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12937, + "otherUnit": null, + "sequence": 1523, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": 9739, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12939, + "pitch": null, + "reason": null, + "target": { + "x": 1.971923828125, + "y": 2.65185546875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 309059, + "y": 455683, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12939, + "otherUnit": null, + "sequence": 1232, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetUnit": { + "snapshotControlPlayerId": 0, + "snapshotPoint": { + "x": 278528, + "y": 100352, + "z": 32768 + }, + "snapshotUnitLink": 486, + "snapshotUpkeepPlayerId": 0, + "tag": 7340033, + "targetUnitFlags": 111, + "timer": 0 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12941, + "otherUnit": null, + "sequence": 1524, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 111 + }, + "cmdFlags": 131328, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12943, + "otherUnit": null, + "sequence": 1525, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12944, + "pitch": null, + "reason": null, + "target": { + "x": 2.017822265625, + "y": 2.6854248046875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12944, + "mask": { + "Mask": { + "Count": 22, + "Data": "0x000222" + } + }, + "userid": { + "userId": 5 + } + }, + { + "distance": 8816, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12947, + "pitch": null, + "reason": null, + "target": { + "x": 2.0550537109375, + "y": 2.732177734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12947, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 3.5323486328125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12950, + "pitch": null, + "reason": null, + "target": { + "x": 2.070068359375, + "y": 2.7720947265625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12954, + "pitch": null, + "reason": null, + "target": { + "x": 2.070068359375, + "y": 2.806640625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 4, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 520 + } + ], + "addUnitTags": [ + 1835017, + 87293960, + 118226948, + 120061962, + 80740361, + 106430470 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12954, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12955, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12958, + "pitch": null, + "reason": null, + "target": { + "x": 2.3277587890625, + "y": 3.539794921875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12959, + "pitch": null, + "reason": null, + "target": { + "x": 2.30908203125, + "y": 3.4918212890625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12961, + "pitch": null, + "reason": null, + "target": { + "x": 2.30078125, + "y": 3.4610595703125 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12962, + "pitch": null, + "reason": null, + "target": { + "x": 2.2955322265625, + "y": 3.4295654296875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 130809865 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12962, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12963, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12967, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12969, + "otherUnit": null, + "sequence": 1526, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12970, + "pitch": null, + "reason": null, + "target": { + "x": 2.040283203125, + "y": 2.7891845703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12970, + "target": { + "x": 38.1024169921875, + "y": 55.6158447265625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12970, + "sequence": 1233, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12970, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 3.4765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12971, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 3.4244384765625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": 9022, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12973, + "pitch": null, + "reason": null, + "target": { + "x": 2.024169921875, + "y": 2.7496337890625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12973, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 3.3721923828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12974, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 3.291015625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12974, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": 9944, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12976, + "pitch": null, + "reason": null, + "target": { + "x": 2.01123046875, + "y": 2.7091064453125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12977, + "pitch": null, + "reason": null, + "target": { + "x": 2.3013916015625, + "y": 3.3221435546875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12977, + "pitch": null, + "reason": null, + "target": { + "x": 2.3013916015625, + "y": 3.2493896484375 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 265424, + "y": 426918, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12977, + "otherUnit": null, + "sequence": 1527, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": 10627, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12978, + "pitch": null, + "reason": null, + "target": { + "x": 1.998046875, + "y": 2.66259765625 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12984, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 3.212158203125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 28049414, + 129761286 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12985, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12985, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 3.1112060546875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12987, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 3.061279296875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12988, + "pitch": null, + "reason": null, + "target": { + "x": 2.1834716796875, + "y": 2.989013671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 10, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 57147393, + 77070339, + 78905348, + 80478209, + 94633986, + 114294785, + 115081217, + 130547715, + 133693441 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12988, + "userid": { + "userId": 2 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12988, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 2.96044921875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12989, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 2.909423828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 123 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12991, + "otherUnit": null, + "sequence": 1528, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12991, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 2.8582763671875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12993, + "pitch": null, + "reason": null, + "target": { + "x": 2.3013916015625, + "y": 3.1578369140625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 115343376, + 129499145 + ], + "removeMask": { + "None": null + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12993, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 288360, + "y": 386459, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12993, + "otherUnit": null, + "sequence": 1529, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12995, + "pitch": null, + "reason": null, + "target": { + "x": 2.0130615234375, + "y": 2.71240234375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12995, + "pitch": null, + "reason": null, + "target": { + "x": 2.3013916015625, + "y": 3.0029296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12996, + "pitch": null, + "reason": null, + "target": { + "x": 2.040283203125, + "y": 2.8077392578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12996, + "pitch": null, + "reason": null, + "target": { + "x": 2.3013916015625, + "y": 2.84814453125 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 12996, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 12996, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 151 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 12996, + "otherUnit": null, + "sequence": 1530, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 12999, + "pitch": null, + "reason": null, + "target": { + "x": 2.070068359375, + "y": 2.88037109375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 12999, + "target": { + "x": 37.744384765625, + "y": 43.921142578125, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 12999, + "sequence": 1234, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13000, + "pitch": null, + "reason": null, + "target": { + "x": 2.0955810546875, + "y": 2.923583984375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 13000, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 292052, + "y": 393927, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13002, + "otherUnit": null, + "sequence": 1531, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13003, + "pitch": null, + "reason": null, + "target": { + "x": 2.1219482421875, + "y": 2.9542236328125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 13003, + "target": { + "x": 37.386474609375, + "y": 44.08984375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 13003, + "sequence": 1235, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13006, + "pitch": null, + "reason": null, + "target": { + "x": 2.1480712890625, + "y": 2.9844970703125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "Mask": { + "Count": 3, + "Data": "0x04" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13007, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [ + 29 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13007, + "userid": { + "userId": 5 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 346 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13007, + "otherUnit": null, + "sequence": 1532, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13008, + "pitch": null, + "reason": null, + "target": { + "x": 1.9375, + "y": 2.5892333984375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13010, + "pitch": null, + "reason": null, + "target": { + "x": 1.8958740234375, + "y": 2.547607421875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + } + ], + "addUnitTags": [ + 104857607 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13010, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13011, + "pitch": null, + "reason": null, + "target": { + "x": 1.8255615234375, + "y": 2.4771728515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13011, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 2.9210205078125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13013, + "pitch": null, + "reason": null, + "target": { + "x": 1.81591796875, + "y": 2.446044921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": 10102, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13013, + "pitch": null, + "reason": null, + "target": { + "x": 2.176513671875, + "y": 3.0264892578125 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 13013, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13013, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 2.9708251953125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 13014, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13015, + "pitch": null, + "reason": null, + "target": { + "x": 1.81591796875, + "y": 2.4140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13015, + "pitch": null, + "reason": null, + "target": { + "x": 1.9495849609375, + "y": 2.60107421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 5, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 173 + } + ], + "addUnitTags": [ + 262149, + 137625601, + 138149889, + 138412033, + 140771330 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13018, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 294827, + "y": 409441, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13018, + "otherUnit": null, + "sequence": 1533, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13018, + "pitch": null, + "reason": null, + "target": { + "x": 1.9219970703125, + "y": 2.569091796875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13019, + "pitch": null, + "reason": null, + "target": { + "x": 1.887939453125, + "y": 2.4140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 1, + "abilLink": 185 + }, + "cmdFlags": 256, + "data": { + "None": null + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13019, + "otherUnit": null, + "sequence": 1236, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 13019, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13021, + "pitch": null, + "reason": null, + "target": { + "x": 1.9190673828125, + "y": 2.4228515625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13021, + "pitch": null, + "reason": null, + "target": { + "x": 2.1781005859375, + "y": 3.0029296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 262149 + ], + "removeMask": { + "Mask": { + "Count": 1, + "Data": "0x01" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13021, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13021, + "pitch": null, + "reason": null, + "target": { + "x": 1.8946533203125, + "y": 2.53076171875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13022, + "pitch": null, + "reason": null, + "target": { + "x": 1.986328125, + "y": 2.489990234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13022, + "pitch": null, + "reason": null, + "target": { + "x": 2.042236328125, + "y": 3.0029296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "None": null + }, + "subgroupIndex": 1 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13022, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13023, + "pitch": null, + "reason": null, + "target": { + "x": 2.018310546875, + "y": 2.52197265625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13025, + "pitch": null, + "reason": null, + "target": { + "x": 2.0599365234375, + "y": 2.5635986328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 13025, + "sequence": 1237, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13025, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 3.0125732421875 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13025, + "pitch": null, + "reason": null, + "target": { + "x": 1.883544921875, + "y": 2.497314453125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13026, + "pitch": null, + "reason": null, + "target": { + "x": 2.12158203125, + "y": 2.625244140625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 13026, + "sequence": 1238, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 13026, + "sequence": 1239, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 137625601 + ], + "removeMask": { + "Mask": { + "Count": 2, + "Data": "0x02" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13026, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13026, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 3.0625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13028, + "pitch": null, + "reason": null, + "target": { + "x": 2.1614990234375, + "y": 2.6651611328125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 13028, + "sequence": 1240, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 138149889, + 138412033 + ], + "removeMask": { + "Mask": { + "Count": 4, + "Data": "0x0c" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13028, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 13028, + "sequence": 1241, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13028, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 3.1158447265625 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13029, + "pitch": null, + "reason": null, + "target": { + "x": 2.2022705078125, + "y": 2.738037109375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13029, + "pitch": null, + "reason": null, + "target": { + "x": 1.79296875, + "y": 2.239013671875 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 13029, + "sequence": 1242, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13029, + "pitch": null, + "reason": null, + "target": { + "x": 1.8905029296875, + "y": 3.0029296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 54, + "unitLink": 125 + } + ], + "addUnitTags": [ + 140771330 + ], + "removeMask": { + "Mask": { + "Count": 5, + "Data": "0x10" + } + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13029, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 13029, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13029, + "pitch": null, + "reason": null, + "target": { + "x": 1.9171142578125, + "y": 2.491943359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13030, + "pitch": null, + "reason": null, + "target": { + "x": 2.2022705078125, + "y": 2.7716064453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13030, + "pitch": null, + "reason": null, + "target": { + "x": 1.773681640625, + "y": 3.0029296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 295110, + "y": 423373, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13030, + "otherUnit": null, + "sequence": 1536, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13032, + "pitch": null, + "reason": null, + "target": { + "x": 2.2022705078125, + "y": 2.8076171875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13032, + "pitch": null, + "reason": null, + "target": { + "x": 1.9498291015625, + "y": 2.51025390625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13033, + "pitch": null, + "reason": null, + "target": { + "x": 2.2022705078125, + "y": 2.868408203125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13033, + "pitch": null, + "reason": null, + "target": { + "x": 1.9844970703125, + "y": 2.53759765625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13034, + "pitch": null, + "reason": null, + "target": { + "x": 2.2022705078125, + "y": 2.9044189453125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 2, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + } + ], + "addUnitTags": [ + 103809032, + 121896968 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13034, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 293858, + "y": 420164, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13034, + "otherUnit": null, + "sequence": 1537, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13036, + "pitch": null, + "reason": null, + "target": { + "x": 2.021240234375, + "y": 2.574462890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 293235, + "y": 422694, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13037, + "otherUnit": null, + "sequence": 1538, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13037, + "pitch": null, + "reason": null, + "target": { + "x": 2.052734375, + "y": 2.615478515625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13039, + "pitch": null, + "reason": null, + "target": { + "x": 2.0704345703125, + "y": 2.6429443359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 13040, + "target": { + "x": 35.7705078125, + "y": 51.5670166015625, + "z": 4 + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 13040, + "sequence": 1539, + "state": 1, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13040, + "pitch": null, + "reason": null, + "target": { + "x": 2.0965576171875, + "y": 2.688232421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13041, + "pitch": null, + "reason": null, + "target": { + "x": 1.9031982421875, + "y": 3.0029296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13041, + "pitch": null, + "reason": null, + "target": { + "x": 2.1129150390625, + "y": 2.7191162109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13043, + "pitch": null, + "reason": null, + "target": { + "x": 2.0233154296875, + "y": 3.0029296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13043, + "pitch": null, + "reason": null, + "target": { + "x": 2.138427734375, + "y": 2.7703857421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 296041, + "y": 397144, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13044, + "otherUnit": null, + "sequence": 1243, + "unitGroup": null, + "userid": { + "userId": 3 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 7, + "intraSubgroupPriority": 1, + "subgroupPriority": 78, + "unitLink": 70 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 76, + "unitLink": 73 + }, + { + "count": 1, + "intraSubgroupPriority": 1, + "subgroupPriority": 66, + "unitLink": 75 + } + ], + "addUnitTags": [ + 27262981, + 84672519, + 103022598, + 104857607, + 123207689, + 126615570, + 130023430, + 93585413, + 132120583 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13045, + "userid": { + "userId": 0 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13045, + "pitch": null, + "reason": null, + "target": { + "x": 2.189453125, + "y": 3.06396484375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 292734, + "y": 420081, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13045, + "otherUnit": null, + "sequence": 1540, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13045, + "pitch": null, + "reason": null, + "target": { + "x": 2.1666259765625, + "y": 2.8289794921875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13047, + "pitch": null, + "reason": null, + "target": { + "x": 2.2098388671875, + "y": 3.107177734375 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13047, + "pitch": null, + "reason": null, + "target": { + "x": 2.1805419921875, + "y": 2.8585205078125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13048, + "pitch": null, + "reason": null, + "target": { + "x": 2.2022705078125, + "y": 2.9476318359375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13048, + "pitch": null, + "reason": null, + "target": { + "x": 2.2022705078125, + "y": 2.987548828125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 292593, + "y": 420662, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13048, + "otherUnit": null, + "sequence": 1541, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13048, + "pitch": null, + "reason": null, + "target": { + "x": 2.1978759765625, + "y": 2.8951416015625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 13049, + "target": { + "x": 36.158203125, + "y": 48.8538818359375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 13049, + "sequence": 1244, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13051, + "pitch": null, + "reason": null, + "target": { + "x": 2.2022705078125, + "y": 3.0556640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13051, + "pitch": null, + "reason": null, + "target": { + "x": 2.054931640625, + "y": 3.0029296875 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13052, + "pitch": null, + "reason": null, + "target": { + "x": 2.2022705078125, + "y": 3.1180419921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 10, + "intraSubgroupPriority": 1, + "subgroupPriority": 58, + "unitLink": 67 + } + ], + "addUnitTags": [ + 54525953, + 57147393, + 77070339, + 78905348, + 80478209, + 94633986, + 114294785, + 115081217, + 130547715, + 133693441 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13052, + "userid": { + "userId": 1 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 13052, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0b" + } + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13052, + "pitch": null, + "reason": null, + "target": { + "x": 2.222412109375, + "y": 3.17041015625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "OneIndices": [ + 23 + ] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13052, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13054, + "pitch": null, + "reason": null, + "target": { + "x": 2.2022705078125, + "y": 3.1556396484375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13054, + "pitch": null, + "reason": null, + "target": { + "x": 2.310791015625, + "y": 3.287353515625 + }, + "userid": { + "userId": 3 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13055, + "pitch": null, + "reason": null, + "target": { + "x": 2.204345703125, + "y": 2.9298095703125 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13056, + "pitch": null, + "reason": null, + "target": { + "x": 2.2607421875, + "y": 3.175048828125 + }, + "userid": { + "userId": 5 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 268778, + "y": 459133, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13058, + "otherUnit": null, + "sequence": 1542, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13058, + "pitch": null, + "reason": null, + "target": { + "x": 2.20458984375, + "y": 2.9705810546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 3, + "controlGroupUpdate": 0, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 13059, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 13060, + "target": { + "x": 40.929931640625, + "y": 56.34521484375, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 13060, + "sequence": 1245, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 269491, + "y": 453186, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13060, + "otherUnit": null, + "sequence": 1543, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13060, + "pitch": null, + "reason": null, + "target": { + "x": 2.2041015625, + "y": 3.016357421875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13062, + "pitch": null, + "reason": null, + "target": { + "x": 2.2037353515625, + "y": 3.0535888671875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13063, + "pitch": null, + "reason": null, + "target": { + "x": 1.834228515625, + "y": 2.1917724609375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13065, + "pitch": null, + "reason": null, + "target": { + "x": 2.2032470703125, + "y": 3.087890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13066, + "pitch": null, + "reason": null, + "target": { + "x": 2.2022705078125, + "y": 3.2196044921875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13066, + "pitch": null, + "reason": null, + "target": { + "x": 1.8702392578125, + "y": 2.131103515625 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [ + { + "count": 3, + "intraSubgroupPriority": 1, + "subgroupPriority": 68, + "unitLink": 127 + }, + { + "count": 13, + "intraSubgroupPriority": 1, + "subgroupPriority": 60, + "unitLink": 126 + } + ], + "addUnitTags": [ + 88604681, + 101449733, + 128712708, + 52428801, + 52690945, + 57671682, + 58982401, + 73662467, + 79429638, + 87818243, + 93061123, + 100401155, + 103546884, + 107479043, + 108003330, + 108265474 + ], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13066, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 268145, + "y": 441168, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13066, + "otherUnit": null, + "sequence": 1544, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13066, + "pitch": null, + "reason": null, + "target": { + "x": 2.20263671875, + "y": 3.1224365234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13067, + "pitch": null, + "reason": null, + "target": { + "x": 2.2022705078125, + "y": 3.255615234375 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13067, + "pitch": null, + "reason": null, + "target": { + "x": 1.88232421875, + "y": 2.0927734375 + }, + "userid": { + "userId": 1 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13069, + "pitch": null, + "reason": null, + "target": { + "x": 2.2022705078125, + "y": 3.29638671875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 267662, + "y": 439820, + "z": 32767 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13069, + "otherUnit": null, + "sequence": 1545, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13070, + "pitch": null, + "reason": null, + "target": { + "x": 2.22900390625, + "y": 3.14794921875 + }, + "userid": { + "userId": 2 + }, + "yaw": null + }, + { + "evtTypeName": "CmdUpdateTargetPoint", + "id": 104, + "loop": 13070, + "target": { + "x": 41.006103515625, + "y": 51.5465087890625, + "z": 4 + }, + "userid": { + "userId": 3 + } + }, + { + "evtTypeName": "CommandManagerState", + "id": 103, + "loop": 13070, + "sequence": 1246, + "state": 1, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13070, + "pitch": null, + "reason": null, + "target": { + "x": 2.2021484375, + "y": 3.1605224609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 267622, + "y": 436368, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13074, + "otherUnit": null, + "sequence": 1546, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13074, + "pitch": null, + "reason": null, + "target": { + "x": 2.2020263671875, + "y": 3.198974609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "abil": null, + "cmdFlags": 264, + "data": { + "TargetPoint": { + "x": 267854, + "y": 434889, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13077, + "otherUnit": null, + "sequence": 1547, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 13078, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13078, + "pitch": null, + "reason": null, + "target": { + "x": 2.2020263671875, + "y": 3.23974609375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 13081, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0b" + } + }, + "userid": { + "userId": 3 + } + }, + { + "abil": { + "abilCmdData": null, + "abilCmdIndex": 0, + "abilLink": 45 + }, + "cmdFlags": 256, + "data": { + "TargetPoint": { + "x": 266570, + "y": 439734, + "z": 32768 + } + }, + "evtTypeName": "Cmd", + "id": 27, + "loop": 13081, + "otherUnit": null, + "sequence": 1548, + "unitGroup": null, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 13082, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13082, + "pitch": null, + "reason": null, + "target": { + "x": 2.2021484375, + "y": 3.2806396484375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 13084, + "mask": { + "None": null + }, + "userid": { + "userId": 5 + } + }, + { + "controlGroupIndex": 5, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 13085, + "mask": { + "Mask": { + "Count": 4, + "Data": "0x0b" + } + }, + "userid": { + "userId": 3 + } + }, + { + "controlGroupIndex": 4, + "controlGroupUpdate": 2, + "evtTypeName": "ControlGroupUpdate", + "id": 29, + "loop": 13086, + "mask": { + "None": null + }, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13090, + "pitch": null, + "reason": null, + "target": { + "x": 2.1663818359375, + "y": 3.295654296875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13092, + "pitch": null, + "reason": null, + "target": { + "x": 2.1287841796875, + "y": 3.258056640625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13093, + "pitch": null, + "reason": null, + "target": { + "x": 2.075927734375, + "y": 3.2052001953125 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13095, + "pitch": null, + "reason": null, + "target": { + "x": 2.0374755859375, + "y": 3.166748046875 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13096, + "pitch": null, + "reason": null, + "target": { + "x": 2.0374755859375, + "y": 3.1259765625 + }, + "userid": { + "userId": 0 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13099, + "pitch": null, + "reason": null, + "target": { + "x": 2.1656494140625, + "y": 3.271240234375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "GameUserLeave", + "id": 101, + "leaveReason": 0, + "loop": 13101, + "userid": { + "userId": 3 + } + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13101, + "pitch": null, + "reason": null, + "target": { + "x": 2.142822265625, + "y": 3.247802734375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13104, + "pitch": null, + "reason": null, + "target": { + "x": 2.118408203125, + "y": 3.2205810546875 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13106, + "pitch": null, + "reason": null, + "target": { + "x": 2.0928955078125, + "y": 3.191162109375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13107, + "pitch": null, + "reason": null, + "target": { + "x": 2.0694580078125, + "y": 3.1636962890625 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "distance": null, + "evtTypeName": "CameraUpdate", + "follow": false, + "id": 49, + "loop": 13110, + "pitch": null, + "reason": null, + "target": { + "x": 2.0478515625, + "y": 3.13818359375 + }, + "userid": { + "userId": 6 + }, + "yaw": null + }, + { + "evtTypeName": "GameUserLeave", + "id": 101, + "leaveReason": 0, + "loop": 13136, + "userid": { + "userId": 5 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13138, + "userid": { + "userId": 0 + } + }, + { + "controlGroupId": 10, + "delta": { + "addSubgroups": [], + "addUnitTags": [], + "removeMask": { + "ZeroIndices": [] + }, + "subgroupIndex": 0 + }, + "evtTypeName": "SelectionDelta", + "id": 28, + "loop": 13138, + "userid": { + "userId": 2 + } + }, + { + "evtTypeName": "GameUserLeave", + "id": 101, + "leaveReason": 0, + "loop": 13142, + "userid": { + "userId": 0 + } + } + ], + "trackerEvents": [ + { + "evtTypeName": "PlayerSetup", + "id": 9, + "loop": 0, + "playerId": 1, + "slotId": 0, + "type": 1, + "userId": 3 + }, + { + "evtTypeName": "PlayerSetup", + "id": 9, + "loop": 0, + "playerId": 2, + "slotId": 1, + "type": 1, + "userId": 5 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 0, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 16, + "y": 30 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 1, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 14, + "y": 27 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 2, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 14, + "y": 23 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 3, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 16, + "y": 20 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 4, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 15, + "y": 29 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 5, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 15, + "y": 26 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 6, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 15, + "y": 24 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 7, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 15, + "y": 21 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 8, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 19, + "y": 32 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 9, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 19, + "y": 18 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 10, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 142, + "y": 17 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 11, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 142, + "y": 19 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 12, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 138, + "y": 13 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 13, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 134, + "y": 13 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 14, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 141, + "y": 14 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 15, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 142, + "y": 15 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 16, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 143, + "y": 18 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 17, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 137, + "y": 12 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 18, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 128, + "y": 19 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 19, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 128, + "y": 15 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 20, + "unitTagRecycle": 1, + "unitTypeName": "XelNagaTower", + "upkeepPlayerId": 0, + "x": 52, + "y": 68 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 21, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 69, + "y": 33 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 22, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 68, + "y": 30 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 23, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 68, + "y": 26 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 24, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 69, + "y": 23 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 25, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 68, + "y": 32 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 26, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 67, + "y": 29 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 27, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 67, + "y": 27 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 28, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 68, + "y": 24 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 29, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 77, + "y": 21 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 30, + "unitTagRecycle": 1, + "unitTypeName": "RichMineralField", + "upkeepPlayerId": 0, + "x": 21, + "y": 72 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 31, + "unitTagRecycle": 1, + "unitTypeName": "RichMineralField", + "upkeepPlayerId": 0, + "x": 22, + "y": 61 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 32, + "unitTagRecycle": 1, + "unitTypeName": "RichMineralField", + "upkeepPlayerId": 0, + "x": 22, + "y": 73 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 33, + "unitTagRecycle": 1, + "unitTypeName": "RichMineralField750", + "upkeepPlayerId": 0, + "x": 21, + "y": 62 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 34, + "unitTagRecycle": 1, + "unitTypeName": "RichMineralField750", + "upkeepPlayerId": 0, + "x": 23, + "y": 60 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 35, + "unitTagRecycle": 1, + "unitTypeName": "RichMineralField750", + "upkeepPlayerId": 0, + "x": 23, + "y": 74 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 36, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 19, + "y": 69 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 37, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 19, + "y": 65 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 38, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 45, + "y": 30 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 39, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 45, + "y": 32 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 40, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 47, + "y": 26 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 41, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 51, + "y": 26 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 42, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 46, + "y": 27 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 43, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 45, + "y": 28 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 44, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 44, + "y": 31 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 45, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 50, + "y": 25 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 46, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 58, + "y": 29 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 47, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 54, + "y": 25 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 48, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 72, + "y": 21 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 49, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 96, + "y": 21 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 50, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 96, + "y": 23 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 51, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 99, + "y": 17 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 52, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 102, + "y": 17 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 53, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 97, + "y": 18 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 54, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 96, + "y": 19 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 55, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 95, + "y": 22 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 56, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 100, + "y": 16 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 57, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 95, + "y": 26 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 58, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 105, + "y": 16 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 59, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 162, + "y": 32 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 60, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 162, + "y": 34 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 61, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 158, + "y": 28 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 62, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 154, + "y": 28 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 63, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 161, + "y": 29 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 64, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 162, + "y": 30 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 65, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 163, + "y": 33 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 66, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 157, + "y": 27 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 67, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 162, + "y": 38 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 68, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 158, + "y": 41 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 69, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 109, + "y": 44 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 70, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 109, + "y": 46 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 71, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 112, + "y": 40 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 72, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 115, + "y": 40 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 73, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 110, + "y": 41 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 74, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 109, + "y": 42 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 75, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 108, + "y": 45 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 76, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 113, + "y": 39 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 77, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 122, + "y": 43 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 78, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 118, + "y": 39 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 79, + "unitTagRecycle": 1, + "unitTypeName": "DestructibleRampHorizontalHuge", + "upkeepPlayerId": 0, + "x": 89, + "y": 68 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 80, + "unitTagRecycle": 1, + "unitTypeName": "RichMineralField", + "upkeepPlayerId": 0, + "x": 158, + "y": 62 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 81, + "unitTagRecycle": 1, + "unitTypeName": "RichMineralField", + "upkeepPlayerId": 0, + "x": 157, + "y": 73 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 82, + "unitTagRecycle": 1, + "unitTypeName": "RichMineralField", + "upkeepPlayerId": 0, + "x": 157, + "y": 61 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 83, + "unitTagRecycle": 1, + "unitTypeName": "RichMineralField750", + "upkeepPlayerId": 0, + "x": 158, + "y": 72 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 84, + "unitTagRecycle": 1, + "unitTypeName": "RichMineralField750", + "upkeepPlayerId": 0, + "x": 156, + "y": 74 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 85, + "unitTagRecycle": 1, + "unitTypeName": "RichMineralField750", + "upkeepPlayerId": 0, + "x": 156, + "y": 60 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 86, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 159, + "y": 65 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 87, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 159, + "y": 69 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 88, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 16, + "y": 105 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 89, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 14, + "y": 108 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 90, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 14, + "y": 112 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 91, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 16, + "y": 115 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 92, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 142, + "y": 118 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 93, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 142, + "y": 116 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 94, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 138, + "y": 122 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 95, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 134, + "y": 122 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 96, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 69, + "y": 102 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 97, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 68, + "y": 105 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 98, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 68, + "y": 109 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 99, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 69, + "y": 112 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 100, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 45, + "y": 105 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 101, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 45, + "y": 103 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 102, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 47, + "y": 109 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 103, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 51, + "y": 109 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 104, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 15, + "y": 106 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 105, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 15, + "y": 109 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 106, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 15, + "y": 111 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 107, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 15, + "y": 114 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 108, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 141, + "y": 121 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 109, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 142, + "y": 120 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 110, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 143, + "y": 117 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 111, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 137, + "y": 123 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 112, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 68, + "y": 103 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 113, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 67, + "y": 106 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 114, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 67, + "y": 108 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 115, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 68, + "y": 111 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 116, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 46, + "y": 108 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 117, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 45, + "y": 107 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 118, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 44, + "y": 104 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 119, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 50, + "y": 110 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 120, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 19, + "y": 103 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 121, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 19, + "y": 117 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 122, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 128, + "y": 116 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 123, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 128, + "y": 120 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 124, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 77, + "y": 114 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 125, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 58, + "y": 106 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 126, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 54, + "y": 110 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 127, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 72, + "y": 114 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 128, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 96, + "y": 114 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 129, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 96, + "y": 112 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 130, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 99, + "y": 118 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 131, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 102, + "y": 118 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 132, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 97, + "y": 117 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 133, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 96, + "y": 116 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 134, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 95, + "y": 113 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 135, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 100, + "y": 119 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 136, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 95, + "y": 109 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 137, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 105, + "y": 119 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 138, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 162, + "y": 103 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 139, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 162, + "y": 101 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 140, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 158, + "y": 107 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 141, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 154, + "y": 107 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 142, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 161, + "y": 106 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 143, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 162, + "y": 105 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 144, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 163, + "y": 102 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 145, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 157, + "y": 108 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 146, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 162, + "y": 97 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 147, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 158, + "y": 94 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 148, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 109, + "y": 91 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 149, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 109, + "y": 89 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 150, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 112, + "y": 95 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 151, + "unitTagRecycle": 1, + "unitTypeName": "MineralField", + "upkeepPlayerId": 0, + "x": 115, + "y": 95 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 152, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 110, + "y": 94 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 153, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 109, + "y": 93 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 154, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 108, + "y": 90 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 155, + "unitTagRecycle": 1, + "unitTypeName": "MineralField750", + "upkeepPlayerId": 0, + "x": 113, + "y": 96 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 156, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 122, + "y": 92 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 157, + "unitTagRecycle": 1, + "unitTypeName": "VespeneGeyser", + "upkeepPlayerId": 0, + "x": 118, + "y": 96 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 158, + "unitTagRecycle": 1, + "unitTypeName": "UnbuildablePlatesDestructible", + "upkeepPlayerId": 0, + "x": 43, + "y": 97 + }, + { + "controlPlayerId": 0, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 159, + "unitTagRecycle": 1, + "unitTypeName": "UnbuildablePlatesDestructible", + "upkeepPlayerId": 0, + "x": 43, + "y": 39 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 160, + "unitTagRecycle": 1, + "unitTypeName": "BeaconArmy", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 161, + "unitTagRecycle": 1, + "unitTypeName": "BeaconDefend", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 162, + "unitTagRecycle": 1, + "unitTypeName": "BeaconAttack", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 163, + "unitTagRecycle": 1, + "unitTypeName": "BeaconHarass", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 164, + "unitTagRecycle": 1, + "unitTypeName": "BeaconIdle", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 165, + "unitTagRecycle": 1, + "unitTypeName": "BeaconAuto", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 166, + "unitTagRecycle": 1, + "unitTypeName": "BeaconDetect", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 167, + "unitTagRecycle": 1, + "unitTypeName": "BeaconScout", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 168, + "unitTagRecycle": 1, + "unitTypeName": "BeaconClaim", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 169, + "unitTagRecycle": 1, + "unitTypeName": "BeaconExpand", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 170, + "unitTagRecycle": 1, + "unitTypeName": "BeaconRally", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 171, + "unitTagRecycle": 1, + "unitTypeName": "BeaconCustom1", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 172, + "unitTagRecycle": 1, + "unitTypeName": "BeaconCustom2", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 173, + "unitTagRecycle": 1, + "unitTypeName": "BeaconCustom3", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 174, + "unitTagRecycle": 1, + "unitTypeName": "BeaconCustom4", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 175, + "unitTagRecycle": 1, + "unitTypeName": "BeaconArmy", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 176, + "unitTagRecycle": 1, + "unitTypeName": "BeaconDefend", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 177, + "unitTagRecycle": 1, + "unitTypeName": "BeaconAttack", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 178, + "unitTagRecycle": 1, + "unitTypeName": "BeaconHarass", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 179, + "unitTagRecycle": 1, + "unitTypeName": "BeaconIdle", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 180, + "unitTagRecycle": 1, + "unitTypeName": "BeaconAuto", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 181, + "unitTagRecycle": 1, + "unitTypeName": "BeaconDetect", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 182, + "unitTagRecycle": 1, + "unitTypeName": "BeaconScout", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 183, + "unitTagRecycle": 1, + "unitTypeName": "BeaconClaim", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 184, + "unitTagRecycle": 1, + "unitTypeName": "BeaconExpand", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 185, + "unitTagRecycle": 1, + "unitTypeName": "BeaconRally", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 186, + "unitTagRecycle": 1, + "unitTypeName": "BeaconCustom1", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 187, + "unitTagRecycle": 1, + "unitTypeName": "BeaconCustom2", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 188, + "unitTagRecycle": 1, + "unitTypeName": "BeaconCustom3", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 189, + "unitTagRecycle": 1, + "unitTypeName": "BeaconCustom4", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 190, + "unitTagRecycle": 1, + "unitTypeName": "Hatchery", + "upkeepPlayerId": 1, + "x": 21, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 191, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 192, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 193, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 194, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 18, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 195, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 18, + "y": 109 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 196, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 18, + "y": 111 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 197, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 18, + "y": 108 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 198, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 18, + "y": 112 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 199, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 18, + "y": 113 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 200, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 18, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 201, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 19, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 202, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 19, + "y": 113 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 203, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 20, + "y": 113 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 204, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 205, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 113 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 206, + "unitTagRecycle": 1, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 24, + "y": 110 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 207, + "unitTagRecycle": 1, + "unitTypeName": "CommandCenter", + "upkeepPlayerId": 2, + "x": 21, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 208, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 209, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 24 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 210, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 26 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 211, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 23 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 212, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 213, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 28 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 214, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 22 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 215, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 19, + "y": 22 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 216, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 19, + "y": 28 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 217, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 20, + "y": 28 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 218, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 20, + "y": 22 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 0, + "unitTagIndex": 219, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 21, + "y": 28 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 57344, + "scoreValueFoodUsed": 49152, + "scoreValueMineralsCollectionRate": 0, + "scoreValueMineralsCurrent": 50, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1050, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 12 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 61440, + "scoreValueFoodUsed": 49152, + "scoreValueMineralsCollectionRate": 0, + "scoreValueMineralsCurrent": 50, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1000, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 12 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 17, + "unitTagIndex": 191, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 160, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 57344, + "scoreValueFoodUsed": 53248, + "scoreValueMineralsCollectionRate": 180, + "scoreValueMineralsCurrent": 30, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1050, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 12 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 160, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 61440, + "scoreValueFoodUsed": 53248, + "scoreValueMineralsCollectionRate": 210, + "scoreValueMineralsCurrent": 35, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1000, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 12 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 257, + "unitTagIndex": 220, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 287, + "unitTagIndex": 221, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 24, + "y": 26 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 289, + "unitTagIndex": 222, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 289, + "unitTagIndex": 191, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 289, + "unitTagIndex": 191, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 294, + "unitTagIndex": 192, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 320, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 57344, + "scoreValueFoodUsed": 53248, + "scoreValueMineralsCollectionRate": 480, + "scoreValueMineralsCurrent": 20, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1100, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 13 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 320, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 61440, + "scoreValueFoodUsed": 57344, + "scoreValueMineralsCollectionRate": 500, + "scoreValueMineralsCurrent": 75, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1050, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 13 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 395, + "unitTagIndex": 191, + "unitTagRecycle": 2, + "unitTypeName": "SupplyDepot", + "upkeepPlayerId": 2, + "x": 35, + "y": 36 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 410, + "unitTagIndex": 193, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 480, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 57344, + "scoreValueFoodUsed": 57344, + "scoreValueMineralsCollectionRate": 520, + "scoreValueMineralsCurrent": 50, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1100, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 13 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 480, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 61440, + "scoreValueFoodUsed": 57344, + "scoreValueMineralsCollectionRate": 500, + "scoreValueMineralsCurrent": 50, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1050, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 13 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 534, + "unitTagIndex": 223, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 558, + "unitTagIndex": 224, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 19, + "y": 23 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 640, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 57344, + "scoreValueFoodUsed": 57344, + "scoreValueMineralsCollectionRate": 520, + "scoreValueMineralsCurrent": 135, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1100, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 13 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 640, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 61440, + "scoreValueFoodUsed": 61440, + "scoreValueMineralsCollectionRate": 500, + "scoreValueMineralsCurrent": 85, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1100, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 14 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 682, + "unitTagIndex": 225, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 682, + "unitTagIndex": 193, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 682, + "unitTagIndex": 193, + "unitTagRecycle": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 694, + "unitTagIndex": 193, + "unitTagRecycle": 2, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 694, + "unitTagIndex": 192, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 694, + "unitTagIndex": 192, + "unitTagRecycle": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 701, + "unitTagIndex": 220, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 705, + "unitTagIndex": 223, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 774, + "unitTagIndex": 192, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 800, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 90112, + "scoreValueFoodUsed": 65536, + "scoreValueMineralsCollectionRate": 520, + "scoreValueMineralsCurrent": 135, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1250, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 14 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 800, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 61440, + "scoreValueFoodUsed": 61440, + "scoreValueMineralsCollectionRate": 500, + "scoreValueMineralsCurrent": 125, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1100, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 14 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 808, + "unitTagIndex": 192, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 829, + "unitTagIndex": 226, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 26 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 875, + "unitTagIndex": 191, + "unitTagRecycle": 2 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 886, + "unitTagIndex": 227, + "unitTagRecycle": 1, + "unitTypeName": "Barracks", + "upkeepPlayerId": 2, + "x": 35, + "y": 33 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 960, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 90112, + "scoreValueFoodUsed": 69632, + "scoreValueMineralsCollectionRate": 560, + "scoreValueMineralsCurrent": 175, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1250, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 14 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 960, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 94208, + "scoreValueFoodUsed": 65536, + "scoreValueMineralsCollectionRate": 560, + "scoreValueMineralsCurrent": 70, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1250, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 15 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 973, + "unitTagIndex": 228, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 973, + "unitTagIndex": 220, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 973, + "unitTagIndex": 220, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 977, + "unitTagIndex": 220, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 977, + "unitTagIndex": 223, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 977, + "unitTagIndex": 223, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 991, + "unitTagIndex": 223, + "unitTagRecycle": 2, + "unitTypeName": "Refinery", + "upkeepPlayerId": 2, + "x": 19, + "y": 32 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 1014, + "unitTagIndex": 229, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 1080, + "unitTagIndex": 230, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 1080, + "unitTagIndex": 192, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 1080, + "unitTagIndex": 192, + "unitTagRecycle": 2, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1120, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 90112, + "scoreValueFoodUsed": 69632, + "scoreValueMineralsCollectionRate": 560, + "scoreValueMineralsCurrent": 270, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1400, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 17 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1120, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 94208, + "scoreValueFoodUsed": 65536, + "scoreValueMineralsCollectionRate": 560, + "scoreValueMineralsCurrent": 25, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1250, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 125, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 15 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 1148, + "unitTagIndex": 192, + "unitTagRecycle": 3, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 26 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 1182, + "unitTagIndex": 231, + "unitTagRecycle": 1, + "unitTypeName": "Hatchery", + "upkeepPlayerId": 1, + "x": 51, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 1244, + "unitTagIndex": 229, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 1254, + "unitTagIndex": 232, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1280, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 90112, + "scoreValueFoodUsed": 69632, + "scoreValueMineralsCollectionRate": 580, + "scoreValueMineralsCurrent": 25, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1350, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 400, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 16 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1280, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 94208, + "scoreValueFoodUsed": 69632, + "scoreValueMineralsCollectionRate": 560, + "scoreValueMineralsCurrent": 75, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1300, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 125, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 16 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 1313, + "unitTagIndex": 232, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 1419, + "unitTagIndex": 233, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 24 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1440, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 90112, + "scoreValueFoodUsed": 73728, + "scoreValueMineralsCollectionRate": 660, + "scoreValueMineralsCurrent": 90, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1350, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 16 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1440, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 94208, + "scoreValueFoodUsed": 73728, + "scoreValueMineralsCollectionRate": 600, + "scoreValueMineralsCurrent": 175, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1350, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 125, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 17 + } + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 1471, + "unitTagIndex": 223, + "unitTagRecycle": 2 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 1494, + "unitTagIndex": 234, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 1516, + "unitTagIndex": 235, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 1516, + "unitTagIndex": 229, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 1516, + "unitTagIndex": 229, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 1544, + "unitTagIndex": 229, + "unitTagRecycle": 2, + "unitTypeName": "Extractor", + "upkeepPlayerId": 1, + "x": 19, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 1545, + "unitTagIndex": 191, + "unitTagRecycle": 2, + "unitTypeName": "SupplyDepotLowered" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 1585, + "unitTagIndex": 236, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 1585, + "unitTagIndex": 232, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 1585, + "unitTagIndex": 232, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1600, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 90112, + "scoreValueFoodUsed": 69632, + "scoreValueMineralsCollectionRate": 640, + "scoreValueMineralsCurrent": 165, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1400, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 425, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 17 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1600, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 94208, + "scoreValueFoodUsed": 73728, + "scoreValueMineralsCollectionRate": 580, + "scoreValueMineralsCurrent": 255, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1425, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 32, + "scoreValueVespeneCurrent": 8, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 17 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 1658, + "unitTagIndex": 232, + "unitTagRecycle": 2, + "unitTypeName": "SpawningPool", + "upkeepPlayerId": 1, + "x": 22, + "y": 104 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 1690, + "unitTagIndex": 237, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 19, + "y": 27 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 1711, + "unitTagIndex": 234, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 1734, + "unitTagIndex": 238, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1760, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 90112, + "scoreValueFoodUsed": 69632, + "scoreValueMineralsCollectionRate": 640, + "scoreValueMineralsCurrent": 30, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1350, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 475, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 16 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1760, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 94208, + "scoreValueFoodUsed": 77824, + "scoreValueMineralsCollectionRate": 540, + "scoreValueMineralsCurrent": 305, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1475, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 28, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 18 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 1785, + "unitTagIndex": 238, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1920, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 90112, + "scoreValueFoodUsed": 73728, + "scoreValueMineralsCollectionRate": 640, + "scoreValueMineralsCurrent": 85, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1350, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 525, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 16 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 1920, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 94208, + "scoreValueFoodUsed": 77824, + "scoreValueMineralsCollectionRate": 560, + "scoreValueMineralsCurrent": 395, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1475, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 48, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 18 + } + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 1926, + "unitTagIndex": 227, + "unitTagRecycle": 1 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 1961, + "unitTagIndex": 239, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 26 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 1974, + "unitTagIndex": 240, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 1983, + "unitTagIndex": 241, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 1983, + "unitTagIndex": 234, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 1983, + "unitTagIndex": 234, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 1994, + "unitTagIndex": 240, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 2024, + "unitTagIndex": 229, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 2025, + "unitTagIndex": 235, + "unitTagRecycle": 1, + "x": 20, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 2057, + "unitTagIndex": 235, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 2057, + "unitTagIndex": 238, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 2057, + "unitTagIndex": 238, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 2080, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 90112, + "scoreValueFoodUsed": 77824, + "scoreValueMineralsCollectionRate": 660, + "scoreValueMineralsCurrent": 145, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1525, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 400, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 0, + "scoreValueVespeneCurrent": 0, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 18 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 2080, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 94208, + "scoreValueFoodUsed": 81920, + "scoreValueMineralsCollectionRate": 600, + "scoreValueMineralsCurrent": 290, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1525, + "scoreValueMineralsUsedCurrentTechnology": 150, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 18, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 50, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 19 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 2214, + "unitTagIndex": 238, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 2228, + "unitTagIndex": 238, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 2240, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 90112, + "scoreValueFoodUsed": 77824, + "scoreValueMineralsCollectionRate": 600, + "scoreValueMineralsCurrent": 140, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1525, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 500, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 80, + "scoreValueVespeneCurrent": 20, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 18 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 2240, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 94208, + "scoreValueFoodUsed": 81920, + "scoreValueMineralsCollectionRate": 600, + "scoreValueMineralsCurrent": 395, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1525, + "scoreValueMineralsUsedCurrentTechnology": 150, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 38, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 50, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 19 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 2255, + "unitTagIndex": 234, + "unitTagRecycle": 2, + "unitTypeName": "CommandCenter", + "upkeepPlayerId": 2, + "x": 51, + "y": 32 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 2266, + "unitTagIndex": 242, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 2266, + "unitTagIndex": 240, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 2266, + "unitTagIndex": 240, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 2400, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 90112, + "scoreValueFoodUsed": 77824, + "scoreValueMineralsCollectionRate": 620, + "scoreValueMineralsCurrent": 250, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1575, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 40, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 19 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 2400, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 94208, + "scoreValueFoodUsed": 81920, + "scoreValueMineralsCollectionRate": 640, + "scoreValueMineralsCurrent": 100, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1525, + "scoreValueMineralsUsedCurrentTechnology": 150, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 550, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 128, + "scoreValueVespeneCurrent": 58, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 50, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 19 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 2454, + "unitTagIndex": 240, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 2455, + "unitTagIndex": 243, + "unitTagRecycle": 1, + "unitTypeName": "SupplyDepot", + "upkeepPlayerId": 2, + "x": 40, + "y": 17 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 2521, + "unitTagIndex": 207, + "unitTagRecycle": 1, + "unitTypeName": "OrbitalCommand" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 2529, + "unitTagIndex": 244, + "unitTagRecycle": 1, + "unitTypeName": "MULE", + "upkeepPlayerId": 2, + "x": 16, + "y": 26 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 2560, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 90112, + "scoreValueFoodUsed": 77824, + "scoreValueMineralsCollectionRate": 620, + "scoreValueMineralsCurrent": 350, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1575, + "scoreValueMineralsUsedCurrentTechnology": 0, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 60, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 19 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 2560, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 94208, + "scoreValueFoodUsed": 86016, + "scoreValueMineralsCollectionRate": 520, + "scoreValueMineralsCurrent": 35, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1675, + "scoreValueMineralsUsedCurrentTechnology": 150, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 550, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 128, + "scoreValueVespeneCurrent": 78, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 50, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 19 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 2628, + "unitTagIndex": 245, + "unitTagRecycle": 1, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 2628, + "unitTagIndex": 238, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 2628, + "unitTagIndex": 238, + "unitTagRecycle": 2, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 2651, + "unitTagIndex": 238, + "unitTagRecycle": 3, + "unitTypeName": "Reaper", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 2694, + "unitTagIndex": 246, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 2698, + "unitTagIndex": 232, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 2699, + "unitTagIndex": 236, + "unitTagRecycle": 1, + "x": 22, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 2713, + "unitTagIndex": 240, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 2718, + "unitTagIndex": 246, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 2720, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 122880, + "scoreValueFoodUsed": 94208, + "scoreValueMineralsCollectionRate": 660, + "scoreValueMineralsCurrent": 215, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 1675, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 250, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 128, + "scoreValueVespeneCurrent": 80, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 19 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 2720, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 94208, + "scoreValueFoodUsed": 90112, + "scoreValueMineralsCollectionRate": 600, + "scoreValueMineralsCurrent": 85, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 50, + "scoreValueMineralsUsedCurrentArmy": 50, + "scoreValueMineralsUsedCurrentEconomy": 1675, + "scoreValueMineralsUsedCurrentTechnology": 150, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 550, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 94, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 50, + "scoreValueVespeneUsedCurrentArmy": 50, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 19 + } + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 2782, + "unitTagIndex": 231, + "unitTagRecycle": 1 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 2782, + "unitTagIndex": 236, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 2782, + "unitTagIndex": 228, + "unitTagRecycle": 1, + "x": 51, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 2796, + "unitTagIndex": 236, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 2798, + "unitTagIndex": 228, + "unitTagRecycle": 2, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 24 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 2809, + "unitTagIndex": 247, + "unitTagRecycle": 1, + "unitTypeName": "Factory", + "upkeepPlayerId": 2, + "x": 34, + "y": 30 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 2880, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 147456, + "scoreValueFoodUsed": 106496, + "scoreValueMineralsCollectionRate": 660, + "scoreValueMineralsCurrent": 120, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 2025, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 450, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 128, + "scoreValueVespeneCurrent": 100, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 19 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 2880, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 94208, + "scoreValueFoodUsed": 94208, + "scoreValueMineralsCollectionRate": 720, + "scoreValueMineralsCurrent": 30, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 50, + "scoreValueMineralsUsedCurrentArmy": 50, + "scoreValueMineralsUsedCurrentEconomy": 1725, + "scoreValueMineralsUsedCurrentTechnology": 150, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 550, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 14, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 50, + "scoreValueVespeneUsedCurrentArmy": 50, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 20 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 2934, + "unitTagIndex": 248, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 2935, + "unitTagIndex": 243, + "unitTagRecycle": 1 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 2965, + "unitTagIndex": 250, + "unitTagRecycle": 1, + "unitTypeName": "Refinery", + "upkeepPlayerId": 2, + "x": 19, + "y": 18 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3022, + "unitTagIndex": 249, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3036, + "unitTagIndex": 248, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3039, + "unitTagIndex": 249, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 3040, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 147456, + "scoreValueFoodUsed": 114688, + "scoreValueMineralsCollectionRate": 660, + "scoreValueMineralsCurrent": 30, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 0, + "scoreValueMineralsUsedCurrentArmy": 0, + "scoreValueMineralsUsedCurrentEconomy": 2025, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 450, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 64, + "scoreValueVespeneCurrent": 4, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 19 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 3040, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 126976, + "scoreValueFoodUsed": 94208, + "scoreValueMineralsCollectionRate": 800, + "scoreValueMineralsCurrent": 70, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 50, + "scoreValueMineralsUsedCurrentArmy": 50, + "scoreValueMineralsUsedCurrentEconomy": 1825, + "scoreValueMineralsUsedCurrentTechnology": 150, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 525, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 34, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 50, + "scoreValueVespeneUsedCurrentArmy": 50, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 20 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3050, + "unitTagIndex": 251, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 34, + "y": 35 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3097, + "unitTagIndex": 252, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3097, + "unitTagIndex": 253, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 22, + "y": 106 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3097, + "unitTagIndex": 240, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 3097, + "unitTagIndex": 240, + "unitTagRecycle": 2, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3102, + "unitTagIndex": 240, + "unitTagRecycle": 3, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3102, + "unitTagIndex": 254, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 106 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3102, + "unitTagIndex": 246, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 3102, + "unitTagIndex": 246, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 238, + "id": 8, + "items": [ + 0, + 47, + 97 + ], + "loop": 3120 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3132, + "unitTagIndex": 246, + "unitTagRecycle": 2, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 24 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3174, + "unitTagIndex": 255, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 3176, + "unitTagIndex": 256, + "unitTagRecycle": 1, + "unitTypeName": "BarracksReactor", + "upkeepPlayerId": 2, + "x": 38, + "y": 33 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3180, + "unitTagIndex": 257, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3180, + "unitTagIndex": 258, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3180, + "unitTagIndex": 236, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 3180, + "unitTagIndex": 236, + "unitTagRecycle": 3, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 3200, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 147456, + "scoreValueFoodUsed": 114688, + "scoreValueMineralsCollectionRate": 660, + "scoreValueMineralsCurrent": 140, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 150, + "scoreValueMineralsUsedCurrentArmy": 150, + "scoreValueMineralsUsedCurrentEconomy": 2025, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 300, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 48, + "scoreValueVespeneCurrent": 12, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 19 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 3200, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 126976, + "scoreValueFoodUsed": 98304, + "scoreValueMineralsCollectionRate": 760, + "scoreValueMineralsCurrent": 90, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 100, + "scoreValueMineralsUsedCurrentArmy": 100, + "scoreValueMineralsUsedCurrentEconomy": 1875, + "scoreValueMineralsUsedCurrentTechnology": 150, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 525, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 4, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 50, + "scoreValueVespeneUsedCurrentArmy": 50, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 150, + "scoreValueWorkersActiveCount": 21 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3208, + "unitTagIndex": 236, + "unitTagRecycle": 4, + "unitTypeName": "KD8Charge", + "upkeepPlayerId": 2, + "x": 46, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 3240, + "unitTagIndex": 236, + "unitTagRecycle": 4, + "x": 46, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3262, + "unitTagIndex": 236, + "unitTagRecycle": 5, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3308, + "unitTagIndex": 259, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3308, + "unitTagIndex": 248, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 3308, + "unitTagIndex": 248, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3311, + "unitTagIndex": 248, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3311, + "unitTagIndex": 249, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 3311, + "unitTagIndex": 249, + "unitTagRecycle": 2, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3324, + "unitTagIndex": 236, + "unitTagRecycle": 5, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 3360, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 147456, + "scoreValueFoodUsed": 118784, + "scoreValueMineralsCollectionRate": 680, + "scoreValueMineralsCurrent": 210, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 150, + "scoreValueMineralsUsedCurrentArmy": 150, + "scoreValueMineralsUsedCurrentEconomy": 2125, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 300, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 48, + "scoreValueVespeneCurrent": 20, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 21 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 3360, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 126976, + "scoreValueFoodUsed": 98304, + "scoreValueMineralsCollectionRate": 800, + "scoreValueMineralsCurrent": 165, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 100, + "scoreValueMineralsUsedCurrentArmy": 100, + "scoreValueMineralsUsedCurrentEconomy": 1875, + "scoreValueMineralsUsedCurrentTechnology": 150, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 525, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 24, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 50, + "scoreValueVespeneUsedCurrentArmy": 50, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 150, + "scoreValueWorkersActiveCount": 21 + } + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 238, + "id": 8, + "items": [ + 0, + 56, + 96, + 2, + 55, + 96, + 12, + 54, + 96, + 5, + 53, + 97, + 1, + 50, + 97 + ], + "loop": 3360 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3403, + "unitTagIndex": 249, + "unitTagRecycle": 3, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 24 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3414, + "unitTagIndex": 260, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 3445, + "unitTagIndex": 250, + "unitTagRecycle": 1 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3500, + "unitTagIndex": 261, + "unitTagRecycle": 1, + "unitTypeName": "Queen", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3502, + "unitTagIndex": 262, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 3520, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 147456, + "scoreValueFoodUsed": 118784, + "scoreValueMineralsCollectionRate": 640, + "scoreValueMineralsCurrent": 315, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 300, + "scoreValueMineralsUsedCurrentArmy": 300, + "scoreValueMineralsUsedCurrentEconomy": 2125, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 150, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 48, + "scoreValueVespeneCurrent": 28, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 21 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 3520, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 126976, + "scoreValueFoodUsed": 102400, + "scoreValueMineralsCollectionRate": 840, + "scoreValueMineralsCurrent": 240, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 100, + "scoreValueMineralsUsedCurrentArmy": 100, + "scoreValueMineralsUsedCurrentEconomy": 2000, + "scoreValueMineralsUsedCurrentTechnology": 150, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 128, + "scoreValueVespeneCurrent": 44, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 50, + "scoreValueVespeneUsedCurrentArmy": 50, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 150, + "scoreValueWorkersActiveCount": 22 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3574, + "unitTagIndex": 263, + "unitTagRecycle": 1, + "unitTypeName": "KD8Charge", + "upkeepPlayerId": 2, + "x": 50, + "y": 99 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3587, + "unitTagIndex": 264, + "unitTagRecycle": 2, + "unitTypeName": "Queen", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3596, + "unitTagIndex": 265, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3596, + "unitTagIndex": 236, + "unitTagRecycle": 5, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 3596, + "unitTagIndex": 236, + "unitTagRecycle": 5, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3597, + "unitTagIndex": 255, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 238, + "id": 8, + "items": [ + 0, + 59, + 97, + 14, + 57, + 98, + 1, + 57, + 97, + 1, + 55, + 98 + ], + "loop": 3600 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 3606, + "unitTagIndex": 263, + "unitTagRecycle": 1, + "x": 50, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 238, + "killerUnitTagRecycle": 3, + "loop": 3608, + "unitTagIndex": 252, + "unitTagRecycle": 1, + "x": 59, + "y": 98 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3654, + "unitTagIndex": 236, + "unitTagRecycle": 7, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3674, + "unitTagIndex": 252, + "unitTagRecycle": 2, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 24 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 3680, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 147456, + "scoreValueFoodUsed": 137216, + "scoreValueMineralsCollectionRate": 700, + "scoreValueMineralsCurrent": 80, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 25, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 425, + "scoreValueMineralsUsedCurrentArmy": 425, + "scoreValueMineralsUsedCurrentEconomy": 2175, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 300, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 48, + "scoreValueVespeneCurrent": 36, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 22 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 3680, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 126976, + "scoreValueFoodUsed": 106496, + "scoreValueMineralsCollectionRate": 860, + "scoreValueMineralsCurrent": 320, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 25, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 100, + "scoreValueMineralsUsedCurrentArmy": 100, + "scoreValueMineralsUsedCurrentEconomy": 2050, + "scoreValueMineralsUsedCurrentTechnology": 150, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 160, + "scoreValueVespeneCurrent": 72, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 50, + "scoreValueVespeneUsedCurrentArmy": 50, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 150, + "scoreValueWorkersActiveCount": 23 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3735, + "unitTagIndex": 262, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3742, + "unitTagIndex": 263, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 3769, + "unitTagIndex": 247, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3834, + "unitTagIndex": 236, + "unitTagRecycle": 7, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 3840, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 147456, + "scoreValueFoodUsed": 141312, + "scoreValueMineralsCollectionRate": 780, + "scoreValueMineralsCurrent": 80, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 25, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 425, + "scoreValueMineralsUsedCurrentArmy": 425, + "scoreValueMineralsUsedCurrentEconomy": 2175, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 300, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 32, + "scoreValueVespeneCurrent": 40, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 22 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 3840, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 126976, + "scoreValueFoodUsed": 106496, + "scoreValueMineralsCollectionRate": 860, + "scoreValueMineralsCurrent": 300, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 25, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 100, + "scoreValueMineralsUsedCurrentArmy": 100, + "scoreValueMineralsUsedCurrentEconomy": 2050, + "scoreValueMineralsUsedCurrentTechnology": 300, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 50, + "scoreValueVespeneCollectionRate": 192, + "scoreValueVespeneCurrent": 4, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 50, + "scoreValueVespeneUsedCurrentArmy": 50, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 100, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 23 + } + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 193, + "id": 8, + "items": [ + 0, + 28, + 48, + 45, + 62, + 86, + 13, + 30, + 40, + 3, + 38, + 92, + 10, + 59, + 99, + 1, + 49, + 109 + ], + "loop": 3840 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 3852, + "unitTagIndex": 266, + "unitTagRecycle": 3, + "unitTypeName": "Starport", + "upkeepPlayerId": 2, + "x": 25, + "y": 26 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 3855, + "unitTagIndex": 234, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3856, + "unitTagIndex": 260, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3869, + "unitTagIndex": 267, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 3869, + "unitTagIndex": 255, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 3869, + "unitTagIndex": 255, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3894, + "unitTagIndex": 255, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3945, + "unitTagIndex": 268, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 24 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 3976, + "unitTagIndex": 256, + "unitTagRecycle": 1 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3980, + "unitTagIndex": 269, + "unitTagRecycle": 1, + "unitTypeName": "MULE", + "upkeepPlayerId": 2, + "x": 43, + "y": 32 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 3982, + "unitTagIndex": 270, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4000, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 147456, + "scoreValueFoodUsed": 145408, + "scoreValueMineralsCollectionRate": 820, + "scoreValueMineralsCurrent": 165, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 25, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 425, + "scoreValueMineralsUsedCurrentArmy": 425, + "scoreValueMineralsUsedCurrentEconomy": 2225, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 300, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 48, + "scoreValueVespeneCurrent": 52, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 23 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4000, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 188416, + "scoreValueFoodUsed": 126976, + "scoreValueMineralsCollectionRate": 840, + "scoreValueMineralsCurrent": 105, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 25, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 100, + "scoreValueMineralsUsedCurrentArmy": 100, + "scoreValueMineralsUsedCurrentEconomy": 2500, + "scoreValueMineralsUsedCurrentTechnology": 350, + "scoreValueMineralsUsedInProgressArmy": 175, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 19, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 50, + "scoreValueVespeneUsedCurrentArmy": 50, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 150, + "scoreValueVespeneUsedInProgressArmy": 25, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 24 + } + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 207, + "killerUnitTagRecycle": 1, + "loop": 4038, + "unitTagIndex": 244, + "unitTagRecycle": 1, + "x": 18, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 4074, + "unitTagIndex": 244, + "unitTagRecycle": 2, + "unitTypeName": "Bunker", + "upkeepPlayerId": 2, + "x": 54, + "y": 36 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4106, + "unitTagIndex": 271, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4106, + "unitTagIndex": 236, + "unitTagRecycle": 7, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4106, + "unitTagIndex": 236, + "unitTagRecycle": 7, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4128, + "unitTagIndex": 236, + "unitTagRecycle": 8, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4128, + "unitTagIndex": 260, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4128, + "unitTagIndex": 260, + "unitTagRecycle": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4134, + "unitTagIndex": 260, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4135, + "unitTagIndex": 272, + "unitTagRecycle": 1, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4135, + "unitTagIndex": 262, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4135, + "unitTagIndex": 262, + "unitTagRecycle": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4144, + "unitTagIndex": 263, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4160, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 180224, + "scoreValueFoodUsed": 145408, + "scoreValueMineralsCollectionRate": 860, + "scoreValueMineralsCurrent": 210, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 25, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 425, + "scoreValueMineralsUsedCurrentArmy": 425, + "scoreValueMineralsUsedCurrentEconomy": 2425, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 300, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 96, + "scoreValueVespeneCurrent": 68, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 25 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4160, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 188416, + "scoreValueFoodUsed": 126976, + "scoreValueMineralsCollectionRate": 660, + "scoreValueMineralsCurrent": 60, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 25, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 100, + "scoreValueMineralsUsedCurrentArmy": 100, + "scoreValueMineralsUsedCurrentEconomy": 2500, + "scoreValueMineralsUsedCurrentTechnology": 350, + "scoreValueMineralsUsedInProgressArmy": 175, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 59, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 50, + "scoreValueVespeneUsedCurrentArmy": 50, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 150, + "scoreValueVespeneUsedInProgressArmy": 25, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 24 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4170, + "unitTagIndex": 262, + "unitTagRecycle": 2, + "unitTypeName": "KD8Charge", + "upkeepPlayerId": 2, + "x": 59, + "y": 95 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4174, + "unitTagIndex": 255, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4177, + "unitTagIndex": 260, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4180, + "unitTagIndex": 275, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4184, + "unitTagIndex": 277, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4188, + "unitTagIndex": 274, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4202, + "unitTagIndex": 262, + "unitTagRecycle": 2, + "x": 59, + "y": 95 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4216, + "unitTagIndex": 276, + "unitTagRecycle": 2, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 18, + "y": 24 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4222, + "unitTagIndex": 273, + "unitTagRecycle": 4, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4225, + "unitTagIndex": 270, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4229, + "unitTagIndex": 273, + "unitTagRecycle": 4, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4255, + "unitTagIndex": 274, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4272, + "unitTagIndex": 262, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4276, + "unitTagIndex": 279, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4280, + "unitTagIndex": 281, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4320, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 180224, + "scoreValueFoodUsed": 165888, + "scoreValueMineralsCollectionRate": 860, + "scoreValueMineralsCurrent": 100, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 25, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 425, + "scoreValueMineralsUsedCurrentArmy": 425, + "scoreValueMineralsUsedCurrentEconomy": 2425, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 300, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 96, + "scoreValueVespeneCurrent": 84, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 25 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4320, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 188416, + "scoreValueFoodUsed": 131072, + "scoreValueMineralsCollectionRate": 740, + "scoreValueMineralsCurrent": 145, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 25, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 100, + "scoreValueMineralsUsedCurrentArmy": 100, + "scoreValueMineralsUsedCurrentEconomy": 2550, + "scoreValueMineralsUsedCurrentTechnology": 350, + "scoreValueMineralsUsedInProgressArmy": 175, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 99, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 50, + "scoreValueVespeneUsedCurrentArmy": 50, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 150, + "scoreValueVespeneUsedInProgressArmy": 25, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 25 + } + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 206, + "id": 8, + "items": [ + 0, + 48, + 18, + 32, + 65, + 87, + 13, + 35, + 26, + 10, + 54, + 96 + ], + "loop": 4320 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4326, + "unitTagIndex": 262, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4329, + "unitTagIndex": 275, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4338, + "unitTagIndex": 280, + "unitTagRecycle": 2, + "unitTypeName": "Queen", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4394, + "unitTagIndex": 278, + "unitTagRecycle": 3, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4397, + "unitTagIndex": 282, + "unitTagRecycle": 2, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 36, + "y": 35 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 4401, + "unitTagIndex": 283, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorQueen", + "upkeepPlayerId": 1, + "x": 45, + "y": 94 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 4405, + "unitTagIndex": 284, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorQueen", + "upkeepPlayerId": 1, + "x": 59, + "y": 99 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4414, + "unitTagIndex": 285, + "unitTagRecycle": 1, + "unitTypeName": "Queen", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4421, + "unitTagIndex": 277, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4422, + "unitTagIndex": 234, + "unitTagRecycle": 2, + "unitTypeName": "OrbitalCommand" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4441, + "unitTagIndex": 286, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4446, + "unitTagIndex": 287, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4446, + "unitTagIndex": 255, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4446, + "unitTagIndex": 255, + "unitTagRecycle": 2, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4449, + "unitTagIndex": 255, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4449, + "unitTagIndex": 260, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4449, + "unitTagIndex": 260, + "unitTagRecycle": 2, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4470, + "unitTagIndex": 260, + "unitTagRecycle": 3, + "unitTypeName": "MULE", + "upkeepPlayerId": 2, + "x": 46, + "y": 30 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4480, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 180224, + "scoreValueFoodUsed": 178176, + "scoreValueMineralsCollectionRate": 880, + "scoreValueMineralsCurrent": 100, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 25, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 725, + "scoreValueMineralsUsedCurrentArmy": 725, + "scoreValueMineralsUsedCurrentEconomy": 2525, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 400, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 104, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 27 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4480, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 188416, + "scoreValueFoodUsed": 139264, + "scoreValueMineralsCollectionRate": 760, + "scoreValueMineralsCurrent": 130, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 25, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 200, + "scoreValueMineralsUsedCurrentArmy": 200, + "scoreValueMineralsUsedCurrentEconomy": 2700, + "scoreValueMineralsUsedCurrentTechnology": 350, + "scoreValueMineralsUsedInProgressArmy": 175, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 135, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 50, + "scoreValueVespeneUsedCurrentArmy": 50, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 150, + "scoreValueVespeneUsedInProgressArmy": 25, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 25 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4487, + "unitTagIndex": 288, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 23, + "y": 27 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4497, + "unitTagIndex": 289, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4497, + "unitTagIndex": 270, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4497, + "unitTagIndex": 270, + "unitTagRecycle": 1, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4501, + "unitTagIndex": 270, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4501, + "unitTagIndex": 273, + "unitTagRecycle": 4, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4501, + "unitTagIndex": 273, + "unitTagRecycle": 4, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4508, + "unitTagIndex": 273, + "unitTagRecycle": 5, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4527, + "unitTagIndex": 290, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4527, + "unitTagIndex": 274, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4527, + "unitTagIndex": 274, + "unitTagRecycle": 2, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4544, + "unitTagIndex": 274, + "unitTagRecycle": 3, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4544, + "unitTagIndex": 263, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4544, + "unitTagIndex": 263, + "unitTagRecycle": 3, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4570, + "unitTagIndex": 263, + "unitTagRecycle": 4, + "unitTypeName": "WidowMine", + "upkeepPlayerId": 2, + "x": 36, + "y": 31 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 4592, + "unitTagIndex": 291, + "unitTagRecycle": 1, + "unitTypeName": "SupplyDepot", + "upkeepPlayerId": 2, + "x": 27, + "y": 40 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 4593, + "unitTagIndex": 292, + "unitTagRecycle": 1, + "unitTypeName": "Extractor", + "upkeepPlayerId": 1, + "x": 54, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4598, + "unitTagIndex": 293, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4598, + "unitTagIndex": 262, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4598, + "unitTagIndex": 262, + "unitTagRecycle": 3, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4601, + "unitTagIndex": 262, + "unitTagRecycle": 4, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4601, + "unitTagIndex": 275, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4601, + "unitTagIndex": 275, + "unitTagRecycle": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4624, + "unitTagIndex": 273, + "unitTagRecycle": 5, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 4629, + "unitTagIndex": 275, + "unitTagRecycle": 2, + "unitTypeName": "FactoryTechLab", + "upkeepPlayerId": 2, + "x": 37, + "y": 30 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4640, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 212992, + "scoreValueFoodUsed": 178176, + "scoreValueMineralsCollectionRate": 900, + "scoreValueMineralsCurrent": 25, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 25, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 725, + "scoreValueMineralsUsedCurrentArmy": 725, + "scoreValueMineralsUsedCurrentEconomy": 2825, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 175, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 24, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 31 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4640, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 188416, + "scoreValueFoodUsed": 147456, + "scoreValueMineralsCollectionRate": 780, + "scoreValueMineralsCurrent": 115, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 25, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 275, + "scoreValueMineralsUsedCurrentArmy": 275, + "scoreValueMineralsUsedCurrentEconomy": 2750, + "scoreValueMineralsUsedCurrentTechnology": 350, + "scoreValueMineralsUsedInProgressArmy": 100, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 300, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 150, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 75, + "scoreValueVespeneUsedCurrentArmy": 75, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 150, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 125, + "scoreValueWorkersActiveCount": 26 + } + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 4641, + "unitTagIndex": 283, + "unitTagRecycle": 1 + }, + { + "count": 1, + "evtTypeName": "Upgrade", + "id": 5, + "loop": 4643, + "playerId": 1, + "upgradeTypeName": "zerglingmovementspeed" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4644, + "unitTagIndex": 283, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 4645, + "unitTagIndex": 284, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4650, + "unitTagIndex": 284, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 4652, + "unitTagIndex": 266, + "unitTagRecycle": 3 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4681, + "unitTagIndex": 294, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4682, + "unitTagIndex": 279, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4693, + "unitTagIndex": 295, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4693, + "unitTagIndex": 277, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4693, + "unitTagIndex": 277, + "unitTagRecycle": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4711, + "unitTagIndex": 281, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 4714, + "unitTagIndex": 244, + "unitTagRecycle": 2 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4758, + "unitTagIndex": 277, + "unitTagRecycle": 2, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 23, + "y": 27 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4762, + "unitTagIndex": 263, + "unitTagRecycle": 4, + "unitTypeName": "WidowMineBurrowed" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4763, + "unitTagIndex": 286, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4776, + "unitTagIndex": 296, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 32 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4800, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 212992, + "scoreValueFoodUsed": 190464, + "scoreValueMineralsCollectionRate": 980, + "scoreValueMineralsCurrent": 35, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 25, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 725, + "scoreValueMineralsUsedCurrentArmy": 725, + "scoreValueMineralsUsedCurrentEconomy": 2875, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 275, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 44, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 32 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4800, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 188416, + "scoreValueFoodUsed": 159744, + "scoreValueMineralsCollectionRate": 1000, + "scoreValueMineralsCurrent": 55, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 25, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 275, + "scoreValueMineralsUsedCurrentArmy": 275, + "scoreValueMineralsUsedCurrentEconomy": 2850, + "scoreValueMineralsUsedCurrentTechnology": 600, + "scoreValueMineralsUsedInProgressArmy": 200, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 50, + "scoreValueVespeneCollectionRate": 224, + "scoreValueVespeneCurrent": 86, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 75, + "scoreValueVespeneUsedCurrentArmy": 75, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 250, + "scoreValueVespeneUsedInProgressArmy": 100, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 25, + "scoreValueWorkersActiveCount": 28 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4800, + "unitTagIndex": 297, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4803, + "unitTagIndex": 298, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 36, + "y": 35 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4826, + "unitTagIndex": 294, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4864, + "unitTagIndex": 299, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4896, + "unitTagIndex": 300, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4896, + "unitTagIndex": 273, + "unitTagRecycle": 5, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4896, + "unitTagIndex": 273, + "unitTagRecycle": 5, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4921, + "unitTagIndex": 273, + "unitTagRecycle": 6, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4954, + "unitTagIndex": 301, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4954, + "unitTagIndex": 279, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4954, + "unitTagIndex": 279, + "unitTagRecycle": 2, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4960, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 212992, + "scoreValueFoodUsed": 194560, + "scoreValueMineralsCollectionRate": 1060, + "scoreValueMineralsCurrent": 70, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 0, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 25, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 725, + "scoreValueMineralsUsedCurrentArmy": 725, + "scoreValueMineralsUsedCurrentEconomy": 2975, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 225, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 128, + "scoreValueVespeneCurrent": 64, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 34 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 4960, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 188416, + "scoreValueFoodUsed": 172032, + "scoreValueMineralsCollectionRate": 1060, + "scoreValueMineralsCurrent": 75, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 25, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 0, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 375, + "scoreValueMineralsUsedCurrentArmy": 375, + "scoreValueMineralsUsedCurrentEconomy": 2850, + "scoreValueMineralsUsedCurrentTechnology": 600, + "scoreValueMineralsUsedInProgressArmy": 200, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 50, + "scoreValueVespeneCollectionRate": 224, + "scoreValueVespeneCurrent": 126, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 75, + "scoreValueVespeneUsedCurrentArmy": 75, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 250, + "scoreValueVespeneUsedInProgressArmy": 100, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 25, + "scoreValueWorkersActiveCount": 28 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 4983, + "unitTagIndex": 302, + "unitTagRecycle": 4, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 4983, + "unitTagIndex": 281, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 4983, + "unitTagIndex": 281, + "unitTagRecycle": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5010, + "unitTagIndex": 273, + "unitTagRecycle": 6, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5013, + "unitTagIndex": 299, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 5029, + "unitTagIndex": 275, + "unitTagRecycle": 2 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5035, + "unitTagIndex": 279, + "unitTagRecycle": 5, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5035, + "unitTagIndex": 286, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5035, + "unitTagIndex": 286, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5036, + "unitTagIndex": 281, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 238, + "id": 8, + "items": [ + 0, + 33, + 102, + 23, + 44, + 97, + 24, + 43, + 98 + ], + "loop": 5040 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5040, + "unitTagIndex": 286, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5044, + "unitTagIndex": 305, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5050, + "unitTagIndex": 307, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 23, + "y": 27 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 5072, + "unitTagIndex": 291, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 5073, + "unitTagIndex": 292, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5074, + "unitTagIndex": 270, + "unitTagRecycle": 2, + "x": 53, + "y": 109 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5076, + "unitTagIndex": 270, + "unitTagRecycle": 3, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 32 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5098, + "unitTagIndex": 306, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5098, + "unitTagIndex": 303, + "unitTagRecycle": 4, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5098, + "unitTagIndex": 294, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5098, + "unitTagIndex": 294, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5102, + "unitTagIndex": 294, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5104, + "unitTagIndex": 309, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5106, + "unitTagIndex": 311, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 49, + "y": 101 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 280, + "killerUnitTagRecycle": 2, + "loop": 5110, + "unitTagIndex": 238, + "unitTagRecycle": 3, + "x": 18, + "y": 107 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 5120, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 212992, + "scoreValueFoodUsed": 202752, + "scoreValueMineralsCollectionRate": 1160, + "scoreValueMineralsCurrent": 265, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 25, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 725, + "scoreValueMineralsUsedCurrentArmy": 725, + "scoreValueMineralsUsedCurrentEconomy": 3200, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 100, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 128, + "scoreValueVespeneCurrent": 84, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 37 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 5120, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 221184, + "scoreValueFoodUsed": 176128, + "scoreValueMineralsCollectionRate": 1140, + "scoreValueMineralsCurrent": 115, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 25, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 325, + "scoreValueMineralsUsedCurrentArmy": 325, + "scoreValueMineralsUsedCurrentEconomy": 3050, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 200, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 224, + "scoreValueVespeneCurrent": 166, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 25, + "scoreValueVespeneUsedCurrentArmy": 25, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 275, + "scoreValueVespeneUsedInProgressArmy": 100, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 30 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5140, + "unitTagIndex": 281, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5143, + "unitTagIndex": 286, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5161, + "unitTagIndex": 294, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5199, + "unitTagIndex": 308, + "unitTagRecycle": 3, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 33, + "y": 32 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5202, + "unitTagIndex": 304, + "unitTagRecycle": 3, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 33, + "y": 33 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5257, + "unitTagIndex": 238, + "unitTagRecycle": 4, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 5279, + "unitTagIndex": 310, + "unitTagRecycle": 2, + "unitTypeName": "Extractor", + "upkeepPlayerId": 1, + "x": 58, + "y": 106 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 5279, + "unitTagIndex": 312, + "unitTagRecycle": 2, + "unitTypeName": "Extractor", + "upkeepPlayerId": 1, + "x": 19, + "y": 117 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 5280, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 212992, + "scoreValueFoodUsed": 202752, + "scoreValueMineralsCollectionRate": 1200, + "scoreValueMineralsCurrent": 215, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 25, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 725, + "scoreValueMineralsUsedCurrentArmy": 725, + "scoreValueMineralsUsedCurrentEconomy": 3100, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 100, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 112, + "scoreValueVespeneCurrent": 100, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 35 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 5280, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 221184, + "scoreValueFoodUsed": 184320, + "scoreValueMineralsCollectionRate": 1280, + "scoreValueMineralsCurrent": 295, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 25, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 425, + "scoreValueMineralsUsedCurrentArmy": 425, + "scoreValueMineralsUsedCurrentEconomy": 3050, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 200, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 206, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 25, + "scoreValueVespeneUsedCurrentArmy": 25, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 275, + "scoreValueVespeneUsedInProgressArmy": 100, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 30 + } + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 280, + "id": 8, + "items": [ + 0, + 24, + 108 + ], + "loop": 5280 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5287, + "unitTagIndex": 263, + "unitTagRecycle": 4, + "unitTypeName": "WidowMine" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5321, + "unitTagIndex": 313, + "unitTagRecycle": 2, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 23, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5347, + "unitTagIndex": 314, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 32 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5389, + "unitTagIndex": 315, + "unitTagRecycle": 1, + "unitTypeName": "Medivac", + "upkeepPlayerId": 2, + "x": 27, + "y": 28 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5394, + "unitTagIndex": 316, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5394, + "unitTagIndex": 317, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 106 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5394, + "unitTagIndex": 273, + "unitTagRecycle": 6, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5394, + "unitTagIndex": 273, + "unitTagRecycle": 6, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5397, + "unitTagIndex": 273, + "unitTagRecycle": 7, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5397, + "unitTagIndex": 318, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5397, + "unitTagIndex": 299, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5397, + "unitTagIndex": 299, + "unitTagRecycle": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5412, + "unitTagIndex": 299, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5412, + "unitTagIndex": 281, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5412, + "unitTagIndex": 281, + "unitTagRecycle": 2, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 5413, + "unitTagIndex": 319, + "unitTagRecycle": 1, + "unitTypeName": "SporeCrawler", + "upkeepPlayerId": 1, + "x": 18, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5415, + "unitTagIndex": 281, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 23, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5415, + "unitTagIndex": 286, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5415, + "unitTagIndex": 286, + "unitTagRecycle": 2, + "x": 23, + "y": 107 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 5440, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 212992, + "scoreValueFoodUsed": 198656, + "scoreValueMineralsCollectionRate": 1080, + "scoreValueMineralsCurrent": 325, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 25, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 825, + "scoreValueMineralsUsedCurrentArmy": 825, + "scoreValueMineralsUsedCurrentEconomy": 3150, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 250, + "scoreValueMineralsUsedInProgressTechnology": 275, + "scoreValueVespeneCollectionRate": 192, + "scoreValueVespeneCurrent": 140, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 36 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 5440, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 221184, + "scoreValueFoodUsed": 204800, + "scoreValueMineralsCollectionRate": 1360, + "scoreValueMineralsCurrent": 355, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 25, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 525, + "scoreValueMineralsUsedCurrentArmy": 525, + "scoreValueMineralsUsedCurrentEconomy": 3150, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 250, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 224, + "scoreValueVespeneCurrent": 92, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 125, + "scoreValueVespeneUsedCurrentArmy": 125, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 275, + "scoreValueVespeneUsedInProgressArmy": 150, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 32 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5467, + "unitTagIndex": 238, + "unitTagRecycle": 4, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5470, + "unitTagIndex": 305, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5473, + "unitTagIndex": 306, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 313, + "killerUnitTagRecycle": 2, + "loop": 5485, + "unitTagIndex": 258, + "unitTagRecycle": 1, + "x": 43, + "y": 36 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 207, + "killerUnitTagRecycle": 1, + "loop": 5486, + "unitTagIndex": 269, + "unitTagRecycle": 1, + "x": 46, + "y": 32 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5497, + "unitTagIndex": 269, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 5497, + "unitTagIndex": 258, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 63, + "y": 92 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 5518, + "unitTagIndex": 320, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 38, + "y": 92 + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 278, + "id": 8, + "items": [ + 0, + 54, + 36, + 4, + 35, + 49, + 31, + 44, + 36 + ], + "loop": 5520 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5527, + "unitTagIndex": 322, + "unitTagRecycle": 1, + "unitTypeName": "MULE", + "upkeepPlayerId": 2, + "x": 43, + "y": 32 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5561, + "unitTagIndex": 321, + "unitTagRecycle": 2, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5561, + "unitTagIndex": 294, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5561, + "unitTagIndex": 294, + "unitTagRecycle": 2, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5592, + "unitTagIndex": 294, + "unitTagRecycle": 3, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 24, + "y": 24 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5598, + "unitTagIndex": 286, + "unitTagRecycle": 4, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 33, + "y": 32 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 5600, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 245760, + "scoreValueFoodUsed": 208896, + "scoreValueMineralsCollectionRate": 1140, + "scoreValueMineralsCurrent": 370, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 800, + "scoreValueMineralsUsedCurrentArmy": 800, + "scoreValueMineralsUsedCurrentEconomy": 3250, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 150, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 275, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 180, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 36 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 5600, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 221184, + "scoreValueFoodUsed": 208896, + "scoreValueMineralsCollectionRate": 1300, + "scoreValueMineralsCurrent": 440, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 575, + "scoreValueMineralsUsedCurrentArmy": 575, + "scoreValueMineralsUsedCurrentEconomy": 3200, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 200, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 132, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 125, + "scoreValueVespeneUsedCurrentArmy": 125, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 275, + "scoreValueVespeneUsedInProgressArmy": 150, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 33 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5601, + "unitTagIndex": 323, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 33, + "y": 32 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5618, + "unitTagIndex": 324, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 32 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 5643, + "unitTagIndex": 325, + "unitTagRecycle": 1, + "unitTypeName": "CommandCenter", + "upkeepPlayerId": 2, + "x": 32, + "y": 21 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 5653, + "unitTagIndex": 326, + "unitTagRecycle": 1, + "unitTypeName": "SporeCrawler", + "upkeepPlayerId": 1, + "x": 48, + "y": 111 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5659, + "unitTagIndex": 269, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5661, + "unitTagIndex": 309, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5664, + "unitTagIndex": 311, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 5701, + "unitTagIndex": 327, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorQueen", + "upkeepPlayerId": 1, + "x": 38, + "y": 100 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 5711, + "unitTagIndex": 328, + "unitTagRecycle": 1, + "unitTypeName": "SupplyDepot", + "upkeepPlayerId": 2, + "x": 53, + "y": 39 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5713, + "unitTagIndex": 329, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5737, + "unitTagIndex": 330, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 5758, + "unitTagIndex": 331, + "unitTagRecycle": 1, + "unitTypeName": "SupplyDepot", + "upkeepPlayerId": 2, + "x": 57, + "y": 35 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 5759, + "unitTagIndex": 312, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5759, + "unitTagIndex": 204, + "unitTagRecycle": 1, + "x": 18, + "y": 116 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 5759, + "unitTagIndex": 310, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 5760, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 245760, + "scoreValueFoodUsed": 217088, + "scoreValueMineralsCollectionRate": 1140, + "scoreValueMineralsCurrent": 335, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 800, + "scoreValueMineralsUsedCurrentArmy": 800, + "scoreValueMineralsUsedCurrentEconomy": 3350, + "scoreValueMineralsUsedCurrentTechnology": 250, + "scoreValueMineralsUsedInProgressArmy": 150, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 400, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 220, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 0, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 35 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 5760, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 221184, + "scoreValueFoodUsed": 212992, + "scoreValueMineralsCollectionRate": 1340, + "scoreValueMineralsCurrent": 70, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 625, + "scoreValueMineralsUsedCurrentArmy": 625, + "scoreValueMineralsUsedCurrentEconomy": 3250, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 150, + "scoreValueMineralsUsedInProgressEconomy": 700, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 172, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 125, + "scoreValueVespeneUsedCurrentArmy": 125, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 275, + "scoreValueVespeneUsedInProgressArmy": 150, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 34 + } + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5760, + "unitTagIndex": 259, + "unitTagRecycle": 2, + "x": 57, + "y": 106 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 5769, + "unitTagIndex": 258, + "unitTagRecycle": 2 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5770, + "unitTagIndex": 259, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5772, + "unitTagIndex": 258, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5774, + "unitTagIndex": 332, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5778, + "unitTagIndex": 334, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 5786, + "unitTagIndex": 320, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5786, + "unitTagIndex": 329, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5788, + "unitTagIndex": 320, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5789, + "unitTagIndex": 330, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5810, + "unitTagIndex": 190, + "unitTagRecycle": 1, + "unitTypeName": "Lair" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5813, + "unitTagIndex": 259, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5817, + "unitTagIndex": 332, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5849, + "unitTagIndex": 333, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5851, + "unitTagIndex": 335, + "unitTagRecycle": 2, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5851, + "unitTagIndex": 336, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 106 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5851, + "unitTagIndex": 238, + "unitTagRecycle": 4, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5851, + "unitTagIndex": 238, + "unitTagRecycle": 4, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5853, + "unitTagIndex": 238, + "unitTagRecycle": 5, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5854, + "unitTagIndex": 338, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 19, + "y": 108 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5854, + "unitTagIndex": 339, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 19, + "y": 108 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5854, + "unitTagIndex": 305, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5854, + "unitTagIndex": 305, + "unitTagRecycle": 1, + "x": 20, + "y": 108 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5857, + "unitTagIndex": 305, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5857, + "unitTagIndex": 341, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5857, + "unitTagIndex": 342, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5857, + "unitTagIndex": 306, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5857, + "unitTagIndex": 306, + "unitTagRecycle": 2, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5863, + "unitTagIndex": 343, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 24, + "y": 24 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5889, + "unitTagIndex": 337, + "unitTagRecycle": 3, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 32 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5890, + "unitTagIndex": 227, + "unitTagRecycle": 1, + "unitTypeName": "BarracksFlying" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5891, + "unitTagIndex": 256, + "unitTagRecycle": 1, + "unitTypeName": "Reactor" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 5893, + "unitTagIndex": 319, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5893, + "unitTagIndex": 205, + "unitTagRecycle": 1, + "x": 18, + "y": 110 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5894, + "unitTagIndex": 247, + "unitTagRecycle": 1, + "unitTypeName": "FactoryFlying" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5895, + "unitTagIndex": 275, + "unitTagRecycle": 2, + "unitTypeName": "TechLab" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 5920, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 245760, + "scoreValueFoodUsed": 233472, + "scoreValueMineralsCollectionRate": 1160, + "scoreValueMineralsCurrent": 345, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 950, + "scoreValueMineralsUsedCurrentArmy": 950, + "scoreValueMineralsUsedCurrentEconomy": 3350, + "scoreValueMineralsUsedCurrentTechnology": 525, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 125, + "scoreValueVespeneCollectionRate": 256, + "scoreValueVespeneCurrent": 260, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 100, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 35 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 5920, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 221184, + "scoreValueFoodUsed": 212992, + "scoreValueMineralsCollectionRate": 1480, + "scoreValueMineralsCurrent": 245, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 625, + "scoreValueMineralsUsedCurrentArmy": 625, + "scoreValueMineralsUsedCurrentEconomy": 3350, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 150, + "scoreValueMineralsUsedInProgressEconomy": 600, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 224, + "scoreValueVespeneCurrent": 158, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 125, + "scoreValueVespeneUsedCurrentArmy": 125, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 275, + "scoreValueVespeneUsedInProgressArmy": 150, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 36 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5931, + "unitTagIndex": 205, + "unitTagRecycle": 4, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5931, + "unitTagIndex": 269, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5931, + "unitTagIndex": 269, + "unitTagRecycle": 2, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5933, + "unitTagIndex": 269, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5933, + "unitTagIndex": 309, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5933, + "unitTagIndex": 309, + "unitTagRecycle": 2, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 5936, + "unitTagIndex": 309, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5936, + "unitTagIndex": 311, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 5936, + "unitTagIndex": 311, + "unitTagRecycle": 1, + "x": 50, + "y": 101 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 5941, + "unitTagIndex": 327, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 5943, + "unitTagIndex": 327, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 234, + "killerUnitTagRecycle": 2, + "loop": 5977, + "unitTagIndex": 260, + "unitTagRecycle": 3, + "x": 46, + "y": 31 + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 261, + "id": 8, + "items": [ + 0, + 31, + 115, + 19, + 31, + 116, + 35, + 39, + 121 + ], + "loop": 6000 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6011, + "unitTagIndex": 260, + "unitTagRecycle": 5, + "unitTypeName": "Spire", + "upkeepPlayerId": 1, + "x": 13, + "y": 111 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6016, + "unitTagIndex": 311, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6018, + "unitTagIndex": 227, + "unitTagRecycle": 1, + "unitTypeName": "Barracks" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6018, + "unitTagIndex": 275, + "unitTagRecycle": 2, + "unitTypeName": "BarracksTechLab" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6021, + "unitTagIndex": 340, + "unitTagRecycle": 2, + "unitTypeName": "MULE", + "upkeepPlayerId": 2, + "x": 51, + "y": 27 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6051, + "unitTagIndex": 247, + "unitTagRecycle": 1, + "unitTypeName": "Factory" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6051, + "unitTagIndex": 204, + "unitTagRecycle": 4, + "unitTypeName": "FactoryReactor", + "upkeepPlayerId": 2, + "x": 37, + "y": 25 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6058, + "unitTagIndex": 306, + "unitTagRecycle": 4, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6058, + "unitTagIndex": 329, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 6058, + "unitTagIndex": 329, + "unitTagRecycle": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6061, + "unitTagIndex": 329, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6061, + "unitTagIndex": 330, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 6061, + "unitTagIndex": 330, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6066, + "unitTagIndex": 238, + "unitTagRecycle": 5, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6070, + "unitTagIndex": 305, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6073, + "unitTagIndex": 333, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 6080, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 245760, + "scoreValueFoodUsed": 241664, + "scoreValueMineralsCollectionRate": 1060, + "scoreValueMineralsCurrent": 160, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 950, + "scoreValueMineralsUsedCurrentArmy": 950, + "scoreValueMineralsUsedCurrentEconomy": 3550, + "scoreValueMineralsUsedCurrentTechnology": 525, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 250, + "scoreValueMineralsUsedInProgressTechnology": 375, + "scoreValueVespeneCollectionRate": 288, + "scoreValueVespeneCurrent": 108, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 100, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 200, + "scoreValueWorkersActiveCount": 39 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 6080, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 221184, + "scoreValueFoodUsed": 221184, + "scoreValueMineralsCollectionRate": 1360, + "scoreValueMineralsCurrent": 285, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 625, + "scoreValueMineralsUsedCurrentArmy": 625, + "scoreValueMineralsUsedCurrentEconomy": 3350, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 150, + "scoreValueMineralsUsedInProgressEconomy": 700, + "scoreValueMineralsUsedInProgressTechnology": 50, + "scoreValueVespeneCollectionRate": 224, + "scoreValueVespeneCurrent": 198, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 125, + "scoreValueVespeneUsedCurrentArmy": 125, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 275, + "scoreValueVespeneUsedInProgressArmy": 150, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 36 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6085, + "unitTagIndex": 330, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6085, + "unitTagIndex": 259, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 6085, + "unitTagIndex": 259, + "unitTagRecycle": 3, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6089, + "unitTagIndex": 259, + "unitTagRecycle": 4, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6089, + "unitTagIndex": 332, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 6089, + "unitTagIndex": 332, + "unitTagRecycle": 1, + "x": 22, + "y": 108 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 6133, + "unitTagIndex": 326, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 6133, + "unitTagIndex": 236, + "unitTagRecycle": 8, + "x": 48, + "y": 110 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6162, + "unitTagIndex": 236, + "unitTagRecycle": 9, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6185, + "unitTagIndex": 332, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 39, + "y": 109 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 6191, + "unitTagIndex": 328, + "unitTagRecycle": 1 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6204, + "unitTagIndex": 345, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 48, + "y": 92 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6207, + "unitTagIndex": 347, + "unitTagRecycle": 1, + "unitTypeName": "Barracks", + "upkeepPlayerId": 2, + "x": 31, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6215, + "unitTagIndex": 348, + "unitTagRecycle": 1, + "unitTypeName": "Barracks", + "upkeepPlayerId": 2, + "x": 35, + "y": 33 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6233, + "unitTagIndex": 344, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 69, + "y": 87 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 6238, + "unitTagIndex": 331, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 6240, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 245760, + "scoreValueFoodUsed": 241664, + "scoreValueMineralsCollectionRate": 1080, + "scoreValueMineralsCurrent": 340, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 950, + "scoreValueMineralsUsedCurrentArmy": 950, + "scoreValueMineralsUsedCurrentEconomy": 3650, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 416, + "scoreValueVespeneCurrent": 180, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 100, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 200, + "scoreValueWorkersActiveCount": 41 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 6240, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 286720, + "scoreValueFoodUsed": 225280, + "scoreValueMineralsCollectionRate": 1340, + "scoreValueMineralsCurrent": 115, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 625, + "scoreValueMineralsUsedCurrentArmy": 625, + "scoreValueMineralsUsedCurrentEconomy": 3550, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 200, + "scoreValueMineralsUsedInProgressEconomy": 500, + "scoreValueMineralsUsedInProgressTechnology": 350, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 138, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 125, + "scoreValueVespeneUsedCurrentArmy": 125, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 275, + "scoreValueVespeneUsedInProgressArmy": 150, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 36 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6242, + "unitTagIndex": 350, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 24, + "y": 24 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6245, + "unitTagIndex": 351, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 32 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6248, + "unitTagIndex": 236, + "unitTagRecycle": 9, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6256, + "unitTagIndex": 346, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6299, + "unitTagIndex": 311, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6329, + "unitTagIndex": 334, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6338, + "unitTagIndex": 349, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6338, + "unitTagIndex": 238, + "unitTagRecycle": 5, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 6338, + "unitTagIndex": 238, + "unitTagRecycle": 5, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6342, + "unitTagIndex": 238, + "unitTagRecycle": 6, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6342, + "unitTagIndex": 305, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 6342, + "unitTagIndex": 305, + "unitTagRecycle": 2, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6345, + "unitTagIndex": 305, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6345, + "unitTagIndex": 333, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 6345, + "unitTagIndex": 333, + "unitTagRecycle": 2, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6367, + "unitTagIndex": 333, + "unitTagRecycle": 3, + "unitTypeName": "Liberator", + "upkeepPlayerId": 2, + "x": 27, + "y": 27 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 6400, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 245760, + "scoreValueFoodUsed": 245760, + "scoreValueMineralsCollectionRate": 1080, + "scoreValueMineralsCurrent": 275, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 950, + "scoreValueMineralsUsedCurrentArmy": 950, + "scoreValueMineralsUsedCurrentEconomy": 3800, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 250, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 256, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 100, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 200, + "scoreValueWorkersActiveCount": 44 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 6400, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 286720, + "scoreValueFoodUsed": 233472, + "scoreValueMineralsCollectionRate": 1400, + "scoreValueMineralsCurrent": 170, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 775, + "scoreValueMineralsUsedCurrentArmy": 775, + "scoreValueMineralsUsedCurrentEconomy": 3650, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 500, + "scoreValueMineralsUsedInProgressTechnology": 350, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 178, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 275, + "scoreValueVespeneUsedCurrentArmy": 275, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 275, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 38 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6402, + "unitTagIndex": 352, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 308, + "killerUnitTagRecycle": 3, + "loop": 6405, + "unitTagIndex": 342, + "unitTagRecycle": 1, + "x": 72, + "y": 99 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6455, + "unitTagIndex": 342, + "unitTagRecycle": 2, + "unitTypeName": "StarportReactor", + "upkeepPlayerId": 2, + "x": 28, + "y": 26 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 6461, + "unitTagIndex": 332, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6464, + "unitTagIndex": 332, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6465, + "unitTagIndex": 353, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6469, + "unitTagIndex": 355, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6473, + "unitTagIndex": 357, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 240, + "id": 8, + "items": [ + 0, + 79, + 105, + 13, + 79, + 104, + 1, + 79, + 104, + 3, + 77, + 103, + 17, + 72, + 94, + 23, + 77, + 105, + 1, + 77, + 105, + 6, + 77, + 105, + 4, + 77, + 105, + 9, + 80, + 105, + 1, + 79, + 103, + 17, + 78, + 105, + 1, + 78, + 102, + 5, + 79, + 102 + ], + "loop": 6480 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 6483, + "unitTagIndex": 345, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6484, + "unitTagIndex": 345, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 6504, + "unitTagIndex": 344, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6506, + "unitTagIndex": 344, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6519, + "unitTagIndex": 356, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumorQueen", + "upkeepPlayerId": 1, + "x": 70, + "y": 98 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6520, + "unitTagIndex": 354, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6520, + "unitTagIndex": 236, + "unitTagRecycle": 9, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 6520, + "unitTagIndex": 236, + "unitTagRecycle": 9, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6532, + "unitTagIndex": 236, + "unitTagRecycle": 10, + "unitTypeName": "CreepTumorQueen", + "upkeepPlayerId": 1, + "x": 71, + "y": 93 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 6560, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 245760, + "scoreValueFoodUsed": 243712, + "scoreValueMineralsCollectionRate": 1140, + "scoreValueMineralsCurrent": 65, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 75, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 925, + "scoreValueMineralsUsedCurrentArmy": 925, + "scoreValueMineralsUsedCurrentEconomy": 3850, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 236, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 100, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 200, + "scoreValueWorkersActiveCount": 45 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 6560, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 286720, + "scoreValueFoodUsed": 233472, + "scoreValueMineralsCollectionRate": 1480, + "scoreValueMineralsCurrent": 355, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 75, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 775, + "scoreValueMineralsUsedCurrentArmy": 775, + "scoreValueMineralsUsedCurrentEconomy": 3650, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 500, + "scoreValueMineralsUsedInProgressTechnology": 350, + "scoreValueVespeneCollectionRate": 224, + "scoreValueVespeneCurrent": 164, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 275, + "scoreValueVespeneUsedCurrentArmy": 275, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 275, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 38 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6591, + "unitTagIndex": 360, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 36, + "y": 31 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6604, + "unitTagIndex": 359, + "unitTagRecycle": 2, + "unitTypeName": "EngineeringBay", + "upkeepPlayerId": 2, + "x": 22, + "y": 18 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6631, + "unitTagIndex": 358, + "unitTagRecycle": 4, + "unitTypeName": "EngineeringBay", + "upkeepPlayerId": 2, + "x": 25, + "y": 18 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6635, + "unitTagIndex": 361, + "unitTagRecycle": 2, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 23, + "y": 27 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6635, + "unitTagIndex": 362, + "unitTagRecycle": 1, + "unitTypeName": "Hatchery", + "upkeepPlayerId": 1, + "x": 74, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6638, + "unitTagIndex": 363, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 31 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6642, + "unitTagIndex": 365, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6646, + "unitTagIndex": 367, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6650, + "unitTagIndex": 369, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 49, + "y": 101 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6654, + "unitTagIndex": 371, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 53, + "y": 101 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6699, + "unitTagIndex": 366, + "unitTagRecycle": 3, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6699, + "unitTagIndex": 311, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 6699, + "unitTagIndex": 311, + "unitTagRecycle": 2, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6713, + "unitTagIndex": 346, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 6720, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 278528, + "scoreValueFoodUsed": 239616, + "scoreValueMineralsCollectionRate": 1300, + "scoreValueMineralsCurrent": 180, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 75, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 925, + "scoreValueMineralsUsedCurrentArmy": 925, + "scoreValueMineralsUsedCurrentEconomy": 3900, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 550, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 316, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 100, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 200, + "scoreValueWorkersActiveCount": 44 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 6720, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 286720, + "scoreValueFoodUsed": 245760, + "scoreValueMineralsCollectionRate": 1400, + "scoreValueMineralsCurrent": 210, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 75, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 825, + "scoreValueMineralsUsedCurrentArmy": 825, + "scoreValueMineralsUsedCurrentEconomy": 3750, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 500, + "scoreValueMineralsUsedInProgressTechnology": 600, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 204, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 275, + "scoreValueVespeneUsedCurrentArmy": 275, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 275, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 40 + } + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 193, + "id": 8, + "items": [ + 0, + 28, + 44, + 140, + 27, + 51 + ], + "loop": 6720 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6729, + "unitTagIndex": 368, + "unitTagRecycle": 2, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6729, + "unitTagIndex": 334, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 6729, + "unitTagIndex": 334, + "unitTagRecycle": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 6759, + "unitTagIndex": 356, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6762, + "unitTagIndex": 356, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 6772, + "unitTagIndex": 236, + "unitTagRecycle": 10 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6774, + "unitTagIndex": 236, + "unitTagRecycle": 10, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6820, + "unitTagIndex": 370, + "unitTagRecycle": 5, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 38, + "y": 118 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6831, + "unitTagIndex": 311, + "unitTagRecycle": 7, + "unitTypeName": "Refinery", + "upkeepPlayerId": 2, + "x": 54, + "y": 25 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6843, + "unitTagIndex": 374, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 75, + "y": 86 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 6851, + "unitTagIndex": 204, + "unitTagRecycle": 4 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6859, + "unitTagIndex": 373, + "unitTagRecycle": 2, + "unitTypeName": "Refinery", + "upkeepPlayerId": 2, + "x": 58, + "y": 29 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6860, + "unitTagIndex": 364, + "unitTagRecycle": 11, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 55, + "y": 88 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 6880, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 311296, + "scoreValueFoodUsed": 239616, + "scoreValueMineralsCollectionRate": 1280, + "scoreValueMineralsCurrent": 395, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 75, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 925, + "scoreValueMineralsUsedCurrentArmy": 925, + "scoreValueMineralsUsedCurrentEconomy": 4000, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 392, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 100, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 200, + "scoreValueWorkersActiveCount": 44 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 6880, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 286720, + "scoreValueFoodUsed": 245760, + "scoreValueMineralsCollectionRate": 1440, + "scoreValueMineralsCurrent": 160, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 75, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 825, + "scoreValueMineralsUsedCurrentArmy": 825, + "scoreValueMineralsUsedCurrentEconomy": 3750, + "scoreValueMineralsUsedCurrentTechnology": 700, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 650, + "scoreValueMineralsUsedInProgressTechnology": 550, + "scoreValueVespeneCollectionRate": 224, + "scoreValueVespeneCurrent": 240, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 275, + "scoreValueVespeneUsedCurrentArmy": 275, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 325, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 40 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6906, + "unitTagIndex": 375, + "unitTagRecycle": 3, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 23, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6909, + "unitTagIndex": 376, + "unitTagRecycle": 3, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 31 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6920, + "unitTagIndex": 352, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6933, + "unitTagIndex": 353, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6935, + "unitTagIndex": 247, + "unitTagRecycle": 1, + "unitTypeName": "FactoryFlying" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6936, + "unitTagIndex": 204, + "unitTagRecycle": 4, + "unitTypeName": "Reactor" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 6936, + "unitTagIndex": 355, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 6940, + "unitTagIndex": 377, + "unitTagRecycle": 1, + "unitTypeName": "BanelingNest", + "upkeepPlayerId": 1, + "x": 46, + "y": 99 + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 193, + "id": 8, + "items": [ + 0, + 29, + 36, + 68, + 70, + 112, + 3, + 71, + 111, + 21, + 56, + 109, + 30, + 68, + 127, + 18, + 28, + 43 + ], + "loop": 6960 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 360, + "killerUnitTagRecycle": 1, + "loop": 6978, + "unitTagIndex": 193, + "unitTagRecycle": 2, + "x": 29, + "y": 35 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6990, + "unitTagIndex": 193, + "unitTagRecycle": 3, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 33, + "y": 32 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 6992, + "unitTagIndex": 334, + "unitTagRecycle": 8, + "unitTypeName": "MULE", + "upkeepPlayerId": 2, + "x": 43, + "y": 30 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7003, + "unitTagIndex": 372, + "unitTagRecycle": 8, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7025, + "unitTagIndex": 357, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7031, + "unitTagIndex": 365, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7032, + "unitTagIndex": 367, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7032, + "unitTagIndex": 369, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7033, + "unitTagIndex": 371, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7033, + "unitTagIndex": 372, + "unitTagRecycle": 8, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 207, + "killerUnitTagRecycle": 1, + "loop": 7035, + "unitTagIndex": 322, + "unitTagRecycle": 1, + "x": 46, + "y": 32 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 7040, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 278528, + "scoreValueFoodUsed": 272384, + "scoreValueMineralsCollectionRate": 1320, + "scoreValueMineralsCurrent": 55, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 75, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 925, + "scoreValueMineralsUsedCurrentArmy": 925, + "scoreValueMineralsUsedCurrentEconomy": 3850, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 900, + "scoreValueMineralsUsedInProgressTechnology": 400, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 418, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 100, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 250, + "scoreValueWorkersActiveCount": 43 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 7040, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 286720, + "scoreValueFoodUsed": 258048, + "scoreValueMineralsCollectionRate": 1420, + "scoreValueMineralsCurrent": 185, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 75, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 875, + "scoreValueMineralsUsedCurrentArmy": 875, + "scoreValueMineralsUsedCurrentEconomy": 3850, + "scoreValueMineralsUsedCurrentTechnology": 700, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 650, + "scoreValueMineralsUsedInProgressTechnology": 550, + "scoreValueVespeneCollectionRate": 224, + "scoreValueVespeneCurrent": 230, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 275, + "scoreValueVespeneUsedCurrentArmy": 275, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 325, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 42 + } + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7096, + "unitTagIndex": 370, + "unitTagRecycle": 5 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7101, + "unitTagIndex": 370, + "unitTagRecycle": 5, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7108, + "unitTagIndex": 374, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7110, + "unitTagIndex": 374, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7113, + "unitTagIndex": 322, + "unitTagRecycle": 2, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7113, + "unitTagIndex": 346, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7113, + "unitTagIndex": 346, + "unitTagRecycle": 2, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7134, + "unitTagIndex": 364, + "unitTagRecycle": 11 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7134, + "unitTagIndex": 364, + "unitTagRecycle": 11, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7164, + "unitTagIndex": 359, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7176, + "unitTagIndex": 247, + "unitTagRecycle": 1, + "unitTypeName": "Factory" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 7176, + "unitTagIndex": 346, + "unitTagRecycle": 3, + "unitTypeName": "FactoryReactor", + "upkeepPlayerId": 2, + "x": 28, + "y": 29 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7177, + "unitTagIndex": 378, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 22, + "y": 28 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7180, + "unitTagIndex": 379, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 31 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7191, + "unitTagIndex": 358, + "unitTagRecycle": 4 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7192, + "unitTagIndex": 380, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7192, + "unitTagIndex": 352, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7192, + "unitTagIndex": 352, + "unitTagRecycle": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 7200, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 311296, + "scoreValueFoodUsed": 272384, + "scoreValueMineralsCollectionRate": 1220, + "scoreValueMineralsCurrent": 180, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 75, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 925, + "scoreValueMineralsUsedCurrentArmy": 925, + "scoreValueMineralsUsedCurrentEconomy": 4000, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 750, + "scoreValueMineralsUsedInProgressTechnology": 400, + "scoreValueVespeneCollectionRate": 480, + "scoreValueVespeneCurrent": 498, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 100, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 250, + "scoreValueWorkersActiveCount": 44 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 7200, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 286720, + "scoreValueFoodUsed": 266240, + "scoreValueMineralsCollectionRate": 1300, + "scoreValueMineralsCurrent": 415, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 75, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 875, + "scoreValueMineralsUsedCurrentArmy": 875, + "scoreValueMineralsUsedCurrentEconomy": 3950, + "scoreValueMineralsUsedCurrentTechnology": 950, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 650, + "scoreValueMineralsUsedInProgressTechnology": 350, + "scoreValueVespeneCollectionRate": 224, + "scoreValueVespeneCurrent": 270, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 275, + "scoreValueVespeneUsedCurrentArmy": 275, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 325, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 44 + } + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 333, + "id": 8, + "items": [ + 0, + 26, + 53, + 27, + 29, + 37 + ], + "loop": 7200 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7205, + "unitTagIndex": 352, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7205, + "unitTagIndex": 353, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7205, + "unitTagIndex": 353, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7208, + "unitTagIndex": 353, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7208, + "unitTagIndex": 355, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7208, + "unitTagIndex": 355, + "unitTagRecycle": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7243, + "unitTagIndex": 355, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7243, + "unitTagIndex": 325, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7247, + "unitTagIndex": 347, + "unitTagRecycle": 1 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 7249, + "unitTagIndex": 381, + "unitTagRecycle": 1, + "unitTypeName": "MissileTurret", + "upkeepPlayerId": 2, + "x": 48, + "y": 30 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7255, + "unitTagIndex": 342, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7255, + "unitTagIndex": 348, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7256, + "unitTagIndex": 256, + "unitTagRecycle": 1, + "unitTypeName": "BarracksReactor" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7268, + "unitTagIndex": 382, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7279, + "unitTagIndex": 383, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7283, + "unitTagIndex": 385, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7284, + "unitTagIndex": 347, + "unitTagRecycle": 1, + "unitTypeName": "BarracksFlying" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7287, + "unitTagIndex": 387, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 7291, + "unitTagIndex": 389, + "unitTagRecycle": 1, + "unitTypeName": "MissileTurret", + "upkeepPlayerId": 2, + "x": 16, + "y": 32 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7297, + "unitTagIndex": 390, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7297, + "unitTagIndex": 357, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7297, + "unitTagIndex": 357, + "unitTagRecycle": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7303, + "unitTagIndex": 357, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7303, + "unitTagIndex": 365, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7303, + "unitTagIndex": 365, + "unitTagRecycle": 1, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7304, + "unitTagIndex": 391, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7304, + "unitTagIndex": 367, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7304, + "unitTagIndex": 367, + "unitTagRecycle": 1, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7304, + "unitTagIndex": 392, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 49, + "y": 101 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7304, + "unitTagIndex": 369, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7304, + "unitTagIndex": 369, + "unitTagRecycle": 1, + "x": 49, + "y": 101 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7305, + "unitTagIndex": 365, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7305, + "unitTagIndex": 372, + "unitTagRecycle": 8, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7305, + "unitTagIndex": 372, + "unitTagRecycle": 8, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7305, + "unitTagIndex": 393, + "unitTagRecycle": 1, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 53, + "y": 101 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7305, + "unitTagIndex": 371, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7305, + "unitTagIndex": 371, + "unitTagRecycle": 1, + "x": 53, + "y": 101 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7311, + "unitTagIndex": 311, + "unitTagRecycle": 7 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7339, + "unitTagIndex": 373, + "unitTagRecycle": 2 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 7342, + "unitTagIndex": 388, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 31, + "y": 123 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 7346, + "unitTagIndex": 371, + "unitTagRecycle": 2, + "unitTypeName": "EvolutionChamber", + "upkeepPlayerId": 1, + "x": 37, + "y": 106 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 7360, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 311296, + "scoreValueFoodUsed": 268288, + "scoreValueMineralsCollectionRate": 1240, + "scoreValueMineralsCurrent": 325, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 75, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 925, + "scoreValueMineralsUsedCurrentArmy": 925, + "scoreValueMineralsUsedCurrentEconomy": 4350, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 525, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 574, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 100, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 250, + "scoreValueWorkersActiveCount": 51 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 7360, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 348160, + "scoreValueFoodUsed": 290816, + "scoreValueMineralsCollectionRate": 1280, + "scoreValueMineralsCurrent": 30, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 75, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 875, + "scoreValueMineralsUsedCurrentArmy": 875, + "scoreValueMineralsUsedCurrentEconomy": 4500, + "scoreValueMineralsUsedCurrentTechnology": 1250, + "scoreValueMineralsUsedInProgressArmy": 350, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 240, + "scoreValueVespeneCurrent": 10, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 275, + "scoreValueVespeneUsedCurrentArmy": 275, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 325, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 44 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 7377, + "unitTagIndex": 372, + "unitTagRecycle": 9, + "unitTypeName": "MissileTurret", + "upkeepPlayerId": 2, + "x": 31, + "y": 36 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7389, + "unitTagIndex": 386, + "unitTagRecycle": 3, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 33, + "y": 32 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 7400, + "unitTagIndex": 369, + "unitTagRecycle": 2, + "unitTypeName": "EvolutionChamber", + "upkeepPlayerId": 1, + "x": 37, + "y": 109 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7408, + "unitTagIndex": 347, + "unitTagRecycle": 1, + "unitTypeName": "Barracks" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7409, + "unitTagIndex": 204, + "unitTagRecycle": 4, + "unitTypeName": "BarracksReactor" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7423, + "unitTagIndex": 367, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 7423, + "unitTagIndex": 394, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 80, + "y": 93 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7427, + "unitTagIndex": 396, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 7427, + "unitTagIndex": 398, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 80, + "y": 98 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7431, + "unitTagIndex": 400, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 7446, + "unitTagIndex": 402, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 81, + "y": 80 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7448, + "unitTagIndex": 404, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 22, + "y": 28 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7451, + "unitTagIndex": 384, + "unitTagRecycle": 3, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 31 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7485, + "unitTagIndex": 355, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7487, + "unitTagIndex": 367, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 7520, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 311296, + "scoreValueFoodUsed": 272384, + "scoreValueMineralsCollectionRate": 1260, + "scoreValueMineralsCurrent": 435, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 75, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 925, + "scoreValueMineralsUsedCurrentArmy": 925, + "scoreValueMineralsUsedCurrentEconomy": 4300, + "scoreValueMineralsUsedCurrentTechnology": 650, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 650, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 650, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 100, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 250, + "scoreValueWorkersActiveCount": 50 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 7520, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 348160, + "scoreValueFoodUsed": 311296, + "scoreValueMineralsCollectionRate": 1280, + "scoreValueMineralsCurrent": 55, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 75, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 925, + "scoreValueMineralsUsedCurrentArmy": 925, + "scoreValueMineralsUsedCurrentEconomy": 4600, + "scoreValueMineralsUsedCurrentTechnology": 1250, + "scoreValueMineralsUsedInProgressArmy": 550, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 350, + "scoreValueVespeneCollectionRate": 384, + "scoreValueVespeneCurrent": 86, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 275, + "scoreValueVespeneUsedCurrentArmy": 275, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 325, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 46 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7520, + "unitTagIndex": 382, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 234, + "killerUnitTagRecycle": 2, + "loop": 7531, + "unitTagIndex": 340, + "unitTagRecycle": 2, + "x": 51, + "y": 29 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7535, + "unitTagIndex": 383, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7601, + "unitTagIndex": 340, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7611, + "unitTagIndex": 260, + "unitTagRecycle": 5 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7612, + "unitTagIndex": 203, + "unitTagRecycle": 1, + "x": 13, + "y": 110 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7616, + "unitTagIndex": 203, + "unitTagRecycle": 2, + "unitTypeName": "MULE", + "upkeepPlayerId": 2, + "x": 51, + "y": 27 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7617, + "unitTagIndex": 388, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7617, + "unitTagIndex": 388, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 7641, + "unitTagIndex": 403, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 63, + "y": 85 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7649, + "unitTagIndex": 381, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 7680, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 311296, + "scoreValueFoodUsed": 272384, + "scoreValueMineralsCollectionRate": 1340, + "scoreValueMineralsCurrent": 465, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 75, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 925, + "scoreValueMineralsUsedCurrentArmy": 925, + "scoreValueMineralsUsedCurrentEconomy": 4300, + "scoreValueMineralsUsedCurrentTechnology": 900, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 650, + "scoreValueMineralsUsedInProgressTechnology": 400, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 730, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 300, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 50 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 7680, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 348160, + "scoreValueFoodUsed": 311296, + "scoreValueMineralsCollectionRate": 1240, + "scoreValueMineralsCurrent": 115, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 75, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 925, + "scoreValueMineralsUsedCurrentArmy": 925, + "scoreValueMineralsUsedCurrentEconomy": 4600, + "scoreValueMineralsUsedCurrentTechnology": 1350, + "scoreValueMineralsUsedInProgressArmy": 550, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 496, + "scoreValueVespeneCurrent": 162, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 275, + "scoreValueVespeneUsedCurrentArmy": 275, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 325, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 46 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7690, + "unitTagIndex": 340, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7691, + "unitTagIndex": 389, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7694, + "unitTagIndex": 385, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7697, + "unitTagIndex": 387, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7698, + "unitTagIndex": 394, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7700, + "unitTagIndex": 396, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7703, + "unitTagIndex": 394, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7706, + "unitTagIndex": 398, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7706, + "unitTagIndex": 398, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7710, + "unitTagIndex": 263, + "unitTagRecycle": 4, + "unitTypeName": "WidowMineBurrowed" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 7716, + "unitTagIndex": 399, + "unitTagRecycle": 3, + "unitTypeName": "SupplyDepot", + "upkeepPlayerId": 2, + "x": 58, + "y": 33 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7719, + "unitTagIndex": 402, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7719, + "unitTagIndex": 402, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7735, + "unitTagIndex": 395, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7757, + "unitTagIndex": 401, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7757, + "unitTagIndex": 355, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7757, + "unitTagIndex": 355, + "unitTagRecycle": 2, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7759, + "unitTagIndex": 355, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7759, + "unitTagIndex": 367, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7759, + "unitTagIndex": 367, + "unitTagRecycle": 2, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 278, + "killerUnitTagRecycle": 3, + "loop": 7774, + "unitTagIndex": 257, + "unitTagRecycle": 1, + "x": 61, + "y": 38 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7777, + "unitTagIndex": 372, + "unitTagRecycle": 9 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7788, + "unitTagIndex": 257, + "unitTagRecycle": 2, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 32, + "y": 31 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 7840, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 311296, + "scoreValueFoodUsed": 303104, + "scoreValueMineralsCollectionRate": 1380, + "scoreValueMineralsCurrent": 200, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 100, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 900, + "scoreValueMineralsUsedCurrentArmy": 900, + "scoreValueMineralsUsedCurrentEconomy": 4400, + "scoreValueMineralsUsedCurrentTechnology": 900, + "scoreValueMineralsUsedInProgressArmy": 400, + "scoreValueMineralsUsedInProgressEconomy": 550, + "scoreValueMineralsUsedInProgressTechnology": 400, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 306, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 300, + "scoreValueVespeneUsedInProgressArmy": 400, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 52 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 7840, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 348160, + "scoreValueFoodUsed": 311296, + "scoreValueMineralsCollectionRate": 1460, + "scoreValueMineralsCurrent": 68, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 100, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 975, + "scoreValueMineralsUsedCurrentArmy": 975, + "scoreValueMineralsUsedCurrentEconomy": 4600, + "scoreValueMineralsUsedCurrentTechnology": 1550, + "scoreValueMineralsUsedInProgressArmy": 500, + "scoreValueMineralsUsedInProgressEconomy": 250, + "scoreValueMineralsUsedInProgressTechnology": 50, + "scoreValueVespeneCollectionRate": 480, + "scoreValueVespeneCurrent": 36, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 275, + "scoreValueVespeneUsedCurrentArmy": 275, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 325, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 46 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7887, + "unitTagIndex": 367, + "unitTagRecycle": 3, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 33, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7890, + "unitTagIndex": 397, + "unitTagRecycle": 2, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 33, + "y": 32 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7894, + "unitTagIndex": 405, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 33, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7897, + "unitTagIndex": 406, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 33, + "y": 32 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7900, + "unitTagIndex": 377, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7901, + "unitTagIndex": 303, + "unitTagRecycle": 4, + "x": 46, + "y": 99 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7906, + "unitTagIndex": 371, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7907, + "unitTagIndex": 380, + "unitTagRecycle": 1, + "x": 37, + "y": 106 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7915, + "unitTagIndex": 403, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7918, + "unitTagIndex": 403, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 193, + "id": 8, + "items": [ + 0, + 54, + 36, + 93, + 54, + 36, + 37, + 54, + 36 + ], + "loop": 7920 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7920, + "unitTagIndex": 380, + "unitTagRecycle": 2, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7920, + "unitTagIndex": 382, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7920, + "unitTagIndex": 382, + "unitTagRecycle": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7930, + "unitTagIndex": 382, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7932, + "unitTagIndex": 303, + "unitTagRecycle": 5, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7935, + "unitTagIndex": 408, + "unitTagRecycle": 1, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 21, + "y": 106 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7935, + "unitTagIndex": 383, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7935, + "unitTagIndex": 383, + "unitTagRecycle": 1, + "x": 21, + "y": 106 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7936, + "unitTagIndex": 409, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 7940, + "unitTagIndex": 383, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7960, + "unitTagIndex": 369, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 7961, + "unitTagIndex": 279, + "unitTagRecycle": 5, + "x": 37, + "y": 109 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 7976, + "unitTagIndex": 346, + "unitTagRecycle": 3 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 7981, + "unitTagIndex": 279, + "unitTagRecycle": 6, + "unitTypeName": "SupplyDepot", + "upkeepPlayerId": 2, + "x": 22, + "y": 32 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7991, + "unitTagIndex": 240, + "unitTagRecycle": 3, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 7994, + "unitTagIndex": 253, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8000, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 376832, + "scoreValueFoodUsed": 303104, + "scoreValueMineralsCollectionRate": 1400, + "scoreValueMineralsCurrent": 140, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 100, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 850, + "scoreValueMineralsUsedCurrentArmy": 900, + "scoreValueMineralsUsedCurrentEconomy": 4600, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 450, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 86, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 450, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 52 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8000, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 348160, + "scoreValueFoodUsed": 319488, + "scoreValueMineralsCollectionRate": 1500, + "scoreValueMineralsCurrent": 107, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 100, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1175, + "scoreValueMineralsUsedCurrentArmy": 1175, + "scoreValueMineralsUsedCurrentEconomy": 4600, + "scoreValueMineralsUsedCurrentTechnology": 1600, + "scoreValueMineralsUsedInProgressArmy": 300, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 448, + "scoreValueVespeneCurrent": 102, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 275, + "scoreValueVespeneUsedCurrentArmy": 275, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 375, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 46 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8078, + "unitTagIndex": 247, + "unitTagRecycle": 1, + "unitTypeName": "FactoryFlying" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8079, + "unitTagIndex": 346, + "unitTagRecycle": 3, + "unitTypeName": "Reactor" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8104, + "unitTagIndex": 303, + "unitTagRecycle": 5, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8109, + "unitTagIndex": 382, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8124, + "unitTagIndex": 383, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8126, + "unitTagIndex": 395, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "count": 1, + "evtTypeName": "Upgrade", + "id": 5, + "loop": 8149, + "playerId": 1, + "upgradeTypeName": "Burrow" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8155, + "unitTagIndex": 400, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8159, + "unitTagIndex": 409, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8160, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 376832, + "scoreValueFoodUsed": 327680, + "scoreValueMineralsCollectionRate": 1280, + "scoreValueMineralsCurrent": 45, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 100, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 850, + "scoreValueMineralsUsedCurrentArmy": 900, + "scoreValueMineralsUsedCurrentEconomy": 4600, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 450, + "scoreValueMineralsUsedInProgressEconomy": 650, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 480, + "scoreValueVespeneCurrent": 162, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 450, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 52 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8160, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 348160, + "scoreValueFoodUsed": 339968, + "scoreValueMineralsCollectionRate": 1520, + "scoreValueMineralsCurrent": 112, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 100, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1175, + "scoreValueMineralsUsedCurrentArmy": 1175, + "scoreValueMineralsUsedCurrentEconomy": 4600, + "scoreValueMineralsUsedCurrentTechnology": 1600, + "scoreValueMineralsUsedInProgressArmy": 550, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 448, + "scoreValueVespeneCurrent": 177, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 275, + "scoreValueVespeneUsedCurrentArmy": 275, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 375, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 46 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8161, + "unitTagIndex": 325, + "unitTagRecycle": 1, + "unitTypeName": "OrbitalCommand" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8163, + "unitTagIndex": 407, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8166, + "unitTagIndex": 410, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8170, + "unitTagIndex": 412, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8170, + "unitTagIndex": 413, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8174, + "unitTagIndex": 415, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 49, + "y": 101 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 8196, + "unitTagIndex": 399, + "unitTagRecycle": 3 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8202, + "unitTagIndex": 247, + "unitTagRecycle": 1, + "unitTypeName": "Factory" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8218, + "unitTagIndex": 414, + "unitTagRecycle": 2, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8218, + "unitTagIndex": 340, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8218, + "unitTagIndex": 340, + "unitTagRecycle": 3, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8222, + "unitTagIndex": 340, + "unitTagRecycle": 4, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8222, + "unitTagIndex": 385, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8222, + "unitTagIndex": 385, + "unitTagRecycle": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8225, + "unitTagIndex": 385, + "unitTagRecycle": 2, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8225, + "unitTagIndex": 387, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8225, + "unitTagIndex": 387, + "unitTagRecycle": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8228, + "unitTagIndex": 387, + "unitTagRecycle": 2, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 52, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8228, + "unitTagIndex": 396, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8228, + "unitTagIndex": 396, + "unitTagRecycle": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 8235, + "unitTagIndex": 362, + "unitTagRecycle": 1 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8235, + "unitTagIndex": 396, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8236, + "unitTagIndex": 301, + "unitTagRecycle": 3, + "x": 74, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8262, + "unitTagIndex": 301, + "unitTagRecycle": 4, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 23, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8264, + "unitTagIndex": 411, + "unitTagRecycle": 3, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 32 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 8280, + "unitTagIndex": 416, + "unitTagRecycle": 2, + "unitTypeName": "Barracks", + "upkeepPlayerId": 2, + "x": 25, + "y": 29 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 8286, + "unitTagIndex": 417, + "unitTagRecycle": 1, + "unitTypeName": "FactoryReactor", + "upkeepPlayerId": 2, + "x": 28, + "y": 32 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8293, + "unitTagIndex": 418, + "unitTagRecycle": 1, + "unitTypeName": "Liberator", + "upkeepPlayerId": 2, + "x": 27, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8296, + "unitTagIndex": 419, + "unitTagRecycle": 1, + "unitTypeName": "Liberator", + "upkeepPlayerId": 2, + "x": 26, + "y": 28 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 8307, + "unitTagIndex": 420, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 72, + "y": 81 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8311, + "unitTagIndex": 422, + "unitTagRecycle": 1, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 62, + "y": 88 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8311, + "unitTagIndex": 240, + "unitTagRecycle": 3, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8311, + "unitTagIndex": 240, + "unitTagRecycle": 3, + "x": 62, + "y": 88 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8314, + "unitTagIndex": 240, + "unitTagRecycle": 4, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 61, + "y": 88 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8314, + "unitTagIndex": 253, + "unitTagRecycle": 1, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8314, + "unitTagIndex": 253, + "unitTagRecycle": 1, + "x": 61, + "y": 88 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8320, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 401408, + "scoreValueFoodUsed": 327680, + "scoreValueMineralsCollectionRate": 1360, + "scoreValueMineralsCurrent": 135, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 150, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1350, + "scoreValueMineralsUsedCurrentArmy": 1350, + "scoreValueMineralsUsedCurrentEconomy": 4950, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 300, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 88, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 450, + "scoreValueVespeneUsedCurrentArmy": 450, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 52 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8320, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 380928, + "scoreValueFoodUsed": 339968, + "scoreValueMineralsCollectionRate": 1520, + "scoreValueMineralsCurrent": 171, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 150, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1475, + "scoreValueMineralsUsedCurrentArmy": 1475, + "scoreValueMineralsUsedCurrentEconomy": 4950, + "scoreValueMineralsUsedCurrentTechnology": 1600, + "scoreValueMineralsUsedInProgressArmy": 250, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 201, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 575, + "scoreValueVespeneUsedCurrentArmy": 575, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 375, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 48 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 8322, + "unitTagIndex": 253, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 88, + "y": 75 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 8341, + "unitTagIndex": 424, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 87, + "y": 90 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 8345, + "unitTagIndex": 426, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 89, + "y": 94 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8376, + "unitTagIndex": 423, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8376, + "unitTagIndex": 303, + "unitTagRecycle": 5, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8376, + "unitTagIndex": 303, + "unitTagRecycle": 5, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8381, + "unitTagIndex": 303, + "unitTagRecycle": 6, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8381, + "unitTagIndex": 382, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8381, + "unitTagIndex": 382, + "unitTagRecycle": 2, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8396, + "unitTagIndex": 382, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8396, + "unitTagIndex": 383, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8396, + "unitTagIndex": 383, + "unitTagRecycle": 2, + "x": 20, + "y": 108 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8398, + "unitTagIndex": 383, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8398, + "unitTagIndex": 395, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8398, + "unitTagIndex": 395, + "unitTagRecycle": 2, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8403, + "unitTagIndex": 395, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8408, + "unitTagIndex": 325, + "unitTagRecycle": 1, + "unitTypeName": "OrbitalCommandFlying" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8427, + "unitTagIndex": 425, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8427, + "unitTagIndex": 400, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8427, + "unitTagIndex": 400, + "unitTagRecycle": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8431, + "unitTagIndex": 400, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8431, + "unitTagIndex": 409, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8431, + "unitTagIndex": 409, + "unitTagRecycle": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8458, + "unitTagIndex": 422, + "unitTagRecycle": 1, + "unitTypeName": "BanelingBurrowed" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 8461, + "unitTagIndex": 279, + "unitTagRecycle": 6 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8461, + "unitTagIndex": 240, + "unitTagRecycle": 4, + "unitTypeName": "BanelingBurrowed" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8462, + "unitTagIndex": 409, + "unitTagRecycle": 2, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8465, + "unitTagIndex": 421, + "unitTagRecycle": 2, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8469, + "unitTagIndex": 427, + "unitTagRecycle": 2, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8472, + "unitTagIndex": 428, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8475, + "unitTagIndex": 429, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 8479, + "unitTagIndex": 430, + "unitTagRecycle": 1, + "unitTypeName": "Barracks", + "upkeepPlayerId": 2, + "x": 25, + "y": 35 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8480, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 401408, + "scoreValueFoodUsed": 327680, + "scoreValueMineralsCollectionRate": 1460, + "scoreValueMineralsCurrent": 380, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 150, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1350, + "scoreValueMineralsUsedCurrentArmy": 1350, + "scoreValueMineralsUsedCurrentEconomy": 5250, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 0, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 448, + "scoreValueVespeneCurrent": 164, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 450, + "scoreValueVespeneUsedCurrentArmy": 450, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 58 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8480, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 413696, + "scoreValueFoodUsed": 348160, + "scoreValueMineralsCollectionRate": 1600, + "scoreValueMineralsCurrent": 184, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 150, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1675, + "scoreValueMineralsUsedCurrentArmy": 1675, + "scoreValueMineralsUsedCurrentEconomy": 5050, + "scoreValueMineralsUsedCurrentTechnology": 1600, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 350, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 279, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 575, + "scoreValueVespeneUsedCurrentArmy": 575, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 375, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 48 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8492, + "unitTagIndex": 431, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 36, + "y": 31 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 207, + "killerUnitTagRecycle": 1, + "loop": 8500, + "unitTagIndex": 334, + "unitTagRecycle": 8, + "x": 48, + "y": 31 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8522, + "unitTagIndex": 395, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8526, + "unitTagIndex": 396, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 8527, + "unitTagIndex": 334, + "unitTagRecycle": 9, + "unitTypeName": "SupplyDepot", + "upkeepPlayerId": 2, + "x": 62, + "y": 27 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8528, + "unitTagIndex": 407, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8531, + "unitTagIndex": 410, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8534, + "unitTagIndex": 412, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8541, + "unitTagIndex": 413, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8548, + "unitTagIndex": 415, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8548, + "unitTagIndex": 429, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 8585, + "unitTagIndex": 432, + "unitTagRecycle": 1, + "unitTypeName": "Extractor", + "upkeepPlayerId": 1, + "x": 72, + "y": 114 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 8586, + "unitTagIndex": 420, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8591, + "unitTagIndex": 420, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 8596, + "unitTagIndex": 253, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8599, + "unitTagIndex": 253, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 8611, + "unitTagIndex": 424, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8611, + "unitTagIndex": 424, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8620, + "unitTagIndex": 254, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 8623, + "unitTagIndex": 426, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8624, + "unitTagIndex": 273, + "unitTagRecycle": 7, + "unitTypeName": "BanelingCocoon" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 8628, + "unitTagIndex": 433, + "unitTagRecycle": 1, + "unitTypeName": "Extractor", + "upkeepPlayerId": 1, + "x": 77, + "y": 114 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8628, + "unitTagIndex": 426, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8640, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 401408, + "scoreValueFoodUsed": 352256, + "scoreValueMineralsCollectionRate": 1460, + "scoreValueMineralsCurrent": 125, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 150, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1300, + "scoreValueMineralsUsedCurrentArmy": 1350, + "scoreValueMineralsUsedCurrentEconomy": 5150, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 550, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 194, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 450, + "scoreValueVespeneUsedCurrentArmy": 450, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 50, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 56 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8640, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 413696, + "scoreValueFoodUsed": 364544, + "scoreValueMineralsCollectionRate": 1460, + "scoreValueMineralsCurrent": 144, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 150, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1725, + "scoreValueMineralsUsedCurrentArmy": 1725, + "scoreValueMineralsUsedCurrentEconomy": 5050, + "scoreValueMineralsUsedCurrentTechnology": 1600, + "scoreValueMineralsUsedInProgressArmy": 200, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 350, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 155, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 575, + "scoreValueVespeneUsedCurrentArmy": 575, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 375, + "scoreValueVespeneUsedInProgressArmy": 200, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 48 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8643, + "unitTagIndex": 434, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8649, + "unitTagIndex": 435, + "unitTagRecycle": 1, + "unitTypeName": "MULE", + "upkeepPlayerId": 2, + "x": 43, + "y": 32 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8662, + "unitTagIndex": 436, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 24, + "y": 24 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 8663, + "unitTagIndex": 437, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 21, + "y": 125 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8665, + "unitTagIndex": 439, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 32 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8691, + "unitTagIndex": 434, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8715, + "unitTagIndex": 438, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8758, + "unitTagIndex": 440, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8762, + "unitTagIndex": 442, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8766, + "unitTagIndex": 444, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8774, + "unitTagIndex": 446, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8777, + "unitTagIndex": 438, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8794, + "unitTagIndex": 445, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8794, + "unitTagIndex": 395, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8794, + "unitTagIndex": 395, + "unitTagRecycle": 3, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8798, + "unitTagIndex": 395, + "unitTagRecycle": 4, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8798, + "unitTagIndex": 396, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8798, + "unitTagIndex": 396, + "unitTagRecycle": 2, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8800, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 401408, + "scoreValueFoodUsed": 360448, + "scoreValueMineralsCollectionRate": 1620, + "scoreValueMineralsCurrent": 200, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 150, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1300, + "scoreValueMineralsUsedCurrentArmy": 1350, + "scoreValueMineralsUsedCurrentEconomy": 5250, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 150, + "scoreValueMineralsUsedInProgressEconomy": 550, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 174, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 450, + "scoreValueVespeneUsedCurrentArmy": 450, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 150, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 58 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8800, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 413696, + "scoreValueFoodUsed": 385024, + "scoreValueMineralsCollectionRate": 1380, + "scoreValueMineralsCurrent": 84, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 150, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1725, + "scoreValueMineralsUsedCurrentArmy": 1725, + "scoreValueMineralsUsedCurrentEconomy": 5150, + "scoreValueMineralsUsedCurrentTechnology": 1600, + "scoreValueMineralsUsedInProgressArmy": 450, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 350, + "scoreValueVespeneCollectionRate": 496, + "scoreValueVespeneCurrent": 235, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 575, + "scoreValueVespeneUsedCurrentArmy": 575, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 375, + "scoreValueVespeneUsedInProgressArmy": 200, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 50 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8800, + "unitTagIndex": 396, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8800, + "unitTagIndex": 407, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8800, + "unitTagIndex": 407, + "unitTagRecycle": 2, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8803, + "unitTagIndex": 407, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8803, + "unitTagIndex": 410, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8803, + "unitTagIndex": 410, + "unitTagRecycle": 2, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8806, + "unitTagIndex": 410, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8806, + "unitTagIndex": 412, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8806, + "unitTagIndex": 412, + "unitTagRecycle": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8806, + "unitTagIndex": 328, + "unitTagRecycle": 1, + "unitTypeName": "SupplyDepotLowered" + }, + { + "count": 1, + "evtTypeName": "Upgrade", + "id": 5, + "loop": 8809, + "playerId": 2, + "upgradeTypeName": "Stimpack" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8813, + "unitTagIndex": 412, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8813, + "unitTagIndex": 413, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8813, + "unitTagIndex": 413, + "unitTagRecycle": 1, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8820, + "unitTagIndex": 413, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8820, + "unitTagIndex": 429, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8820, + "unitTagIndex": 429, + "unitTagRecycle": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8820, + "unitTagIndex": 443, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 49, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8820, + "unitTagIndex": 415, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8820, + "unitTagIndex": 415, + "unitTagRecycle": 1, + "x": 49, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8833, + "unitTagIndex": 415, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8837, + "unitTagIndex": 441, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8841, + "unitTagIndex": 448, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8843, + "unitTagIndex": 440, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8869, + "unitTagIndex": 415, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8872, + "unitTagIndex": 441, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8905, + "unitTagIndex": 442, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8940, + "unitTagIndex": 447, + "unitTagRecycle": 2, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 64, + "y": 93 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8940, + "unitTagIndex": 254, + "unitTagRecycle": 1, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8940, + "unitTagIndex": 254, + "unitTagRecycle": 1, + "x": 64, + "y": 93 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 8942, + "unitTagIndex": 437, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8943, + "unitTagIndex": 437, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8944, + "unitTagIndex": 254, + "unitTagRecycle": 2, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 62, + "y": 93 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 8944, + "unitTagIndex": 273, + "unitTagRecycle": 7, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 8944, + "unitTagIndex": 273, + "unitTagRecycle": 7, + "x": 62, + "y": 93 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8955, + "unitTagIndex": 273, + "unitTagRecycle": 8, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8960, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 401408, + "scoreValueFoodUsed": 376832, + "scoreValueMineralsCollectionRate": 1720, + "scoreValueMineralsCurrent": 100, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 175, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1400, + "scoreValueMineralsUsedCurrentArmy": 1400, + "scoreValueMineralsUsedCurrentEconomy": 5550, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 300, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 50, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 500, + "scoreValueVespeneUsedCurrentArmy": 500, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 64 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 8960, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 413696, + "scoreValueFoodUsed": 393216, + "scoreValueMineralsCollectionRate": 1520, + "scoreValueMineralsCurrent": 174, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 175, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1725, + "scoreValueMineralsUsedCurrentArmy": 1725, + "scoreValueMineralsUsedCurrentEconomy": 5150, + "scoreValueMineralsUsedCurrentTechnology": 1600, + "scoreValueMineralsUsedInProgressArmy": 450, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 350, + "scoreValueVespeneCollectionRate": 480, + "scoreValueVespeneCurrent": 211, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 575, + "scoreValueVespeneUsedCurrentArmy": 575, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 375, + "scoreValueVespeneUsedInProgressArmy": 200, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 50 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 8960, + "unitTagIndex": 429, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9002, + "unitTagIndex": 273, + "unitTagRecycle": 8, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9005, + "unitTagIndex": 429, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 9007, + "unitTagIndex": 334, + "unitTagRecycle": 9 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9007, + "unitTagIndex": 444, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9010, + "unitTagIndex": 449, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9014, + "unitTagIndex": 451, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9018, + "unitTagIndex": 453, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 73, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9049, + "unitTagIndex": 452, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 9050, + "unitTagIndex": 450, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 95, + "y": 75 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9064, + "unitTagIndex": 455, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 9065, + "unitTagIndex": 432, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9065, + "unitTagIndex": 293, + "unitTagRecycle": 1, + "x": 71, + "y": 113 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9067, + "unitTagIndex": 293, + "unitTagRecycle": 2, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 9067, + "unitTagIndex": 456, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 92, + "y": 93 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9069, + "unitTagIndex": 458, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 9070, + "unitTagIndex": 459, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 92, + "y": 92 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 9086, + "unitTagIndex": 417, + "unitTagRecycle": 1 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9091, + "unitTagIndex": 457, + "unitTagRecycle": 2, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9091, + "unitTagIndex": 434, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9091, + "unitTagIndex": 434, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 9108, + "unitTagIndex": 433, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9108, + "unitTagIndex": 287, + "unitTagRecycle": 1, + "x": 76, + "y": 113 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9118, + "unitTagIndex": 446, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 9120, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 434176, + "scoreValueFoodUsed": 393216, + "scoreValueMineralsCollectionRate": 1920, + "scoreValueMineralsCurrent": 220, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 175, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1400, + "scoreValueMineralsUsedCurrentArmy": 1400, + "scoreValueMineralsUsedCurrentEconomy": 5800, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 500, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 480, + "scoreValueVespeneCurrent": 130, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 500, + "scoreValueVespeneUsedCurrentArmy": 500, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 64 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 9120, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 446464, + "scoreValueFoodUsed": 405504, + "scoreValueMineralsCollectionRate": 1520, + "scoreValueMineralsCurrent": 79, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 175, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1875, + "scoreValueMineralsUsedCurrentArmy": 1875, + "scoreValueMineralsUsedCurrentEconomy": 5250, + "scoreValueMineralsUsedCurrentTechnology": 1650, + "scoreValueMineralsUsedInProgressArmy": 450, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 300, + "scoreValueVespeneCollectionRate": 448, + "scoreValueVespeneCurrent": 283, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 575, + "scoreValueVespeneUsedCurrentArmy": 575, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 425, + "scoreValueVespeneUsedInProgressArmy": 200, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 50 + } + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 278, + "id": 8, + "items": [ + 0, + 57, + 38 + ], + "loop": 9120 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 234, + "killerUnitTagRecycle": 2, + "loop": 9122, + "unitTagIndex": 203, + "unitTagRecycle": 2, + "x": 51, + "y": 28 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9124, + "unitTagIndex": 448, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9125, + "unitTagIndex": 449, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9125, + "unitTagIndex": 451, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9126, + "unitTagIndex": 452, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9135, + "unitTagIndex": 203, + "unitTagRecycle": 3, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9136, + "unitTagIndex": 287, + "unitTagRecycle": 2, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 24, + "y": 24 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9138, + "unitTagIndex": 434, + "unitTagRecycle": 2, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 32 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9138, + "unitTagIndex": 454, + "unitTagRecycle": 3, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 33, + "y": 32 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9144, + "unitTagIndex": 453, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9200, + "unitTagIndex": 460, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9231, + "unitTagIndex": 461, + "unitTagRecycle": 1, + "unitTypeName": "Medivac", + "upkeepPlayerId": 2, + "x": 27, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9233, + "unitTagIndex": 462, + "unitTagRecycle": 1, + "unitTypeName": "Medivac", + "upkeepPlayerId": 2, + "x": 26, + "y": 28 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 9251, + "unitTagIndex": 463, + "unitTagRecycle": 1, + "unitTypeName": "Armory", + "upkeepPlayerId": 2, + "x": 59, + "y": 26 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 386, + "killerUnitTagRecycle": 3, + "loop": 9264, + "unitTagIndex": 316, + "unitTagRecycle": 1, + "x": 72, + "y": 30 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9269, + "unitTagIndex": 316, + "unitTagRecycle": 2, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9269, + "unitTagIndex": 415, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9269, + "unitTagIndex": 415, + "unitTagRecycle": 2, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 9271, + "unitTagIndex": 415, + "unitTagRecycle": 3, + "unitTypeName": "MissileTurret", + "upkeepPlayerId": 2, + "x": 71, + "y": 28 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9272, + "unitTagIndex": 464, + "unitTagRecycle": 1, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 53, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9272, + "unitTagIndex": 441, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9272, + "unitTagIndex": 441, + "unitTagRecycle": 2, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9279, + "unitTagIndex": 460, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 9280, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 499712, + "scoreValueFoodUsed": 415744, + "scoreValueMineralsCollectionRate": 1920, + "scoreValueMineralsCurrent": 215, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 200, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1375, + "scoreValueMineralsUsedCurrentArmy": 1375, + "scoreValueMineralsUsedCurrentEconomy": 6000, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 750, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 480, + "scoreValueVespeneCurrent": 206, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 500, + "scoreValueVespeneUsedCurrentArmy": 500, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 64 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 9280, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 446464, + "scoreValueFoodUsed": 421888, + "scoreValueMineralsCollectionRate": 1440, + "scoreValueMineralsCurrent": 79, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 200, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2175, + "scoreValueMineralsUsedCurrentArmy": 2175, + "scoreValueMineralsUsedCurrentEconomy": 5350, + "scoreValueMineralsUsedCurrentTechnology": 1650, + "scoreValueMineralsUsedInProgressArmy": 250, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 550, + "scoreValueVespeneCollectionRate": 448, + "scoreValueVespeneCurrent": 263, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 775, + "scoreValueVespeneUsedCurrentArmy": 775, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 425, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 52 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9302, + "unitTagIndex": 441, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9305, + "unitTagIndex": 465, + "unitTagRecycle": 1, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9305, + "unitTagIndex": 438, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9305, + "unitTagIndex": 438, + "unitTagRecycle": 2, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9311, + "unitTagIndex": 325, + "unitTagRecycle": 1, + "unitTypeName": "OrbitalCommand" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 9318, + "unitTagIndex": 450, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 9320, + "unitTagIndex": 416, + "unitTagRecycle": 2 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9320, + "unitTagIndex": 346, + "unitTagRecycle": 3, + "unitTypeName": "BarracksReactor" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 9321, + "unitTagIndex": 456, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9322, + "unitTagIndex": 441, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9323, + "unitTagIndex": 450, + "unitTagRecycle": 2, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9324, + "unitTagIndex": 456, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 9332, + "unitTagIndex": 459, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9336, + "unitTagIndex": 459, + "unitTagRecycle": 1, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9358, + "unitTagIndex": 438, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 9359, + "unitTagIndex": 466, + "unitTagRecycle": 1, + "unitTypeName": "SupplyDepot", + "upkeepPlayerId": 2, + "x": 52, + "y": 25 + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 251, + "id": 8, + "items": [ + 0, + 67, + 38, + 27, + 66, + 38, + 26, + 67, + 40, + 19, + 66, + 38, + 63, + 66, + 39, + 20, + 67, + 39 + ], + "loop": 9360 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9371, + "unitTagIndex": 467, + "unitTagRecycle": 1, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9371, + "unitTagIndex": 440, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9371, + "unitTagIndex": 440, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9386, + "unitTagIndex": 440, + "unitTagRecycle": 2, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9386, + "unitTagIndex": 468, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 75, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9386, + "unitTagIndex": 273, + "unitTagRecycle": 8, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9386, + "unitTagIndex": 273, + "unitTagRecycle": 8, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9389, + "unitTagIndex": 273, + "unitTagRecycle": 9, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9389, + "unitTagIndex": 469, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9389, + "unitTagIndex": 429, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9389, + "unitTagIndex": 429, + "unitTagRecycle": 3, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9391, + "unitTagIndex": 429, + "unitTagRecycle": 4, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9391, + "unitTagIndex": 470, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 20, + "y": 106 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9391, + "unitTagIndex": 444, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9391, + "unitTagIndex": 444, + "unitTagRecycle": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9401, + "unitTagIndex": 438, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9407, + "unitTagIndex": 444, + "unitTagRecycle": 2, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 24, + "y": 24 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9409, + "unitTagIndex": 471, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 48, + "y": 32 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 9419, + "unitTagIndex": 472, + "unitTagRecycle": 1, + "unitTypeName": "Hatchery", + "upkeepPlayerId": 1, + "x": 80, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9433, + "unitTagIndex": 473, + "unitTagRecycle": 1, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9433, + "unitTagIndex": 442, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9433, + "unitTagIndex": 442, + "unitTagRecycle": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 9440, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 499712, + "scoreValueFoodUsed": 419840, + "scoreValueMineralsCollectionRate": 1900, + "scoreValueMineralsCurrent": 145, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 50, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 200, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1825, + "scoreValueMineralsUsedCurrentArmy": 1825, + "scoreValueMineralsUsedCurrentEconomy": 5950, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 300, + "scoreValueMineralsUsedInProgressEconomy": 500, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 608, + "scoreValueVespeneCurrent": 318, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 800, + "scoreValueVespeneUsedCurrentArmy": 800, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 63 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 9440, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 446464, + "scoreValueFoodUsed": 421888, + "scoreValueMineralsCollectionRate": 1340, + "scoreValueMineralsCurrent": 204, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 200, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 50, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2175, + "scoreValueMineralsUsedCurrentArmy": 2175, + "scoreValueMineralsUsedCurrentEconomy": 5450, + "scoreValueMineralsUsedCurrentTechnology": 1800, + "scoreValueMineralsUsedInProgressArmy": 250, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 400, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 343, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 775, + "scoreValueVespeneUsedCurrentArmy": 775, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 425, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 54 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9440, + "unitTagIndex": 442, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9446, + "unitTagIndex": 247, + "unitTagRecycle": 1, + "unitTypeName": "FactoryFlying" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9447, + "unitTagIndex": 417, + "unitTagRecycle": 1, + "unitTypeName": "Reactor" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9452, + "unitTagIndex": 474, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9456, + "unitTagIndex": 476, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9460, + "unitTagIndex": 478, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9463, + "unitTagIndex": 480, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9466, + "unitTagIndex": 481, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9468, + "unitTagIndex": 482, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9474, + "unitTagIndex": 483, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9478, + "unitTagIndex": 485, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9482, + "unitTagIndex": 475, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 340, + "killerUnitTagRecycle": 4, + "loop": 9490, + "unitTagIndex": 203, + "unitTagRecycle": 3, + "x": 56, + "y": 62 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9502, + "unitTagIndex": 484, + "unitTagRecycle": 2, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9502, + "unitTagIndex": 203, + "unitTagRecycle": 5, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9502, + "unitTagIndex": 446, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9502, + "unitTagIndex": 446, + "unitTagRecycle": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9508, + "unitTagIndex": 446, + "unitTagRecycle": 2, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9508, + "unitTagIndex": 477, + "unitTagRecycle": 4, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 50, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9508, + "unitTagIndex": 448, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9508, + "unitTagIndex": 448, + "unitTagRecycle": 1, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9509, + "unitTagIndex": 479, + "unitTagRecycle": 3, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9509, + "unitTagIndex": 487, + "unitTagRecycle": 2, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9509, + "unitTagIndex": 449, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9509, + "unitTagIndex": 449, + "unitTagRecycle": 2, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9509, + "unitTagIndex": 488, + "unitTagRecycle": 3, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9509, + "unitTagIndex": 489, + "unitTagRecycle": 3, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 76, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9509, + "unitTagIndex": 451, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9509, + "unitTagIndex": 451, + "unitTagRecycle": 1, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9510, + "unitTagIndex": 448, + "unitTagRecycle": 2, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9510, + "unitTagIndex": 490, + "unitTagRecycle": 2, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9510, + "unitTagIndex": 452, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9510, + "unitTagIndex": 452, + "unitTagRecycle": 2, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 9519, + "unitTagIndex": 430, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 338, + "killerUnitTagRecycle": 1, + "loop": 9520, + "unitTagIndex": 455, + "unitTagRecycle": 1, + "x": 58, + "y": 56 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 9521, + "unitTagIndex": 452, + "unitTagRecycle": 4, + "unitTypeName": "SupplyDepot", + "upkeepPlayerId": 2, + "x": 22, + "y": 30 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9528, + "unitTagIndex": 486, + "unitTagRecycle": 4, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9528, + "unitTagIndex": 455, + "unitTagRecycle": 2, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9528, + "unitTagIndex": 453, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9528, + "unitTagIndex": 453, + "unitTagRecycle": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9534, + "unitTagIndex": 451, + "unitTagRecycle": 2, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9537, + "unitTagIndex": 449, + "unitTagRecycle": 3, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 36, + "y": 31 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9542, + "unitTagIndex": 492, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9551, + "unitTagIndex": 491, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9551, + "unitTagIndex": 460, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9551, + "unitTagIndex": 460, + "unitTagRecycle": 2, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 458, + "killerUnitTagRecycle": 1, + "loop": 9561, + "unitTagIndex": 335, + "unitTagRecycle": 2, + "x": 59, + "y": 56 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9587, + "unitTagIndex": 442, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9590, + "unitTagIndex": 474, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9594, + "unitTagIndex": 335, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9594, + "unitTagIndex": 441, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9594, + "unitTagIndex": 441, + "unitTagRecycle": 3, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9594, + "unitTagIndex": 475, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 9600, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 499712, + "scoreValueFoodUsed": 442368, + "scoreValueMineralsCollectionRate": 1780, + "scoreValueMineralsCurrent": 125, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 150, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 225, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2100, + "scoreValueMineralsUsedCurrentArmy": 2100, + "scoreValueMineralsUsedCurrentEconomy": 6050, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 300, + "scoreValueMineralsUsedInProgressEconomy": 400, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 688, + "scoreValueVespeneCurrent": 134, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 800, + "scoreValueVespeneUsedCurrentArmy": 800, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 65 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 9600, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 446464, + "scoreValueFoodUsed": 430080, + "scoreValueMineralsCollectionRate": 1520, + "scoreValueMineralsCurrent": 74, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 225, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 150, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2325, + "scoreValueMineralsUsedCurrentArmy": 2325, + "scoreValueMineralsUsedCurrentEconomy": 5450, + "scoreValueMineralsUsedCurrentTechnology": 1950, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 250, + "scoreValueVespeneCollectionRate": 480, + "scoreValueVespeneCurrent": 373, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 775, + "scoreValueVespeneUsedCurrentArmy": 775, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 425, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 54 + } + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 293, + "id": 8, + "items": [ + 0, + 58, + 59, + 24, + 59, + 68, + 1, + 58, + 70, + 18, + 58, + 71, + 2, + 58, + 69, + 2, + 59, + 74, + 28, + 48, + 66, + 17, + 59, + 73, + 2, + 60, + 73, + 27, + 59, + 72, + 44, + 58, + 58, + 7, + 59, + 71 + ], + "loop": 9600 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9602, + "unitTagIndex": 476, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9635, + "unitTagIndex": 430, + "unitTagRecycle": 1, + "unitTypeName": "BarracksFlying" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9651, + "unitTagIndex": 441, + "unitTagRecycle": 4, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9655, + "unitTagIndex": 453, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 73, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 193, + "killerUnitTagRecycle": 3, + "loop": 9659, + "unitTagIndex": 448, + "unitTagRecycle": 2, + "x": 55, + "y": 64 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9659, + "unitTagIndex": 494, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 72, + "y": 105 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9670, + "unitTagIndex": 247, + "unitTagRecycle": 1, + "unitTypeName": "Factory" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 9670, + "unitTagIndex": 448, + "unitTagRecycle": 3, + "unitTypeName": "FactoryReactor", + "upkeepPlayerId": 2, + "x": 28, + "y": 23 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 9671, + "unitTagIndex": 415, + "unitTagRecycle": 3 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9673, + "unitTagIndex": 496, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9673, + "unitTagIndex": 438, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 9673, + "unitTagIndex": 438, + "unitTagRecycle": 3, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9684, + "unitTagIndex": 203, + "unitTagRecycle": 5, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9688, + "unitTagIndex": 273, + "unitTagRecycle": 9, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9691, + "unitTagIndex": 317, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9710, + "unitTagIndex": 493, + "unitTagRecycle": 4, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9759, + "unitTagIndex": 430, + "unitTagRecycle": 1, + "unitTypeName": "Barracks" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9759, + "unitTagIndex": 417, + "unitTagRecycle": 1, + "unitTypeName": "BarracksReactor" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 9760, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 499712, + "scoreValueFoodUsed": 448512, + "scoreValueMineralsCollectionRate": 1800, + "scoreValueMineralsCurrent": 255, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 150, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 250, + "scoreValueMineralsLostEconomy": 100, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2000, + "scoreValueMineralsUsedCurrentArmy": 2075, + "scoreValueMineralsUsedCurrentEconomy": 6100, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 475, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 688, + "scoreValueVespeneCurrent": 79, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 0, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 800, + "scoreValueVespeneUsedCurrentArmy": 800, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 475, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 66 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 9760, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 446464, + "scoreValueFoodUsed": 430080, + "scoreValueMineralsCollectionRate": 1620, + "scoreValueMineralsCurrent": 309, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 250, + "scoreValueMineralsKilledEconomy": 100, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 150, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2325, + "scoreValueMineralsUsedCurrentArmy": 2325, + "scoreValueMineralsUsedCurrentEconomy": 5450, + "scoreValueMineralsUsedCurrentTechnology": 2050, + "scoreValueMineralsUsedInProgressArmy": 50, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 480, + "scoreValueVespeneCurrent": 449, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 775, + "scoreValueVespeneUsedCurrentArmy": 775, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 425, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 150, + "scoreValueWorkersActiveCount": 54 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9789, + "unitTagIndex": 495, + "unitTagRecycle": 5, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 22, + "y": 28 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9792, + "unitTagIndex": 460, + "unitTagRecycle": 6, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 54, + "y": 32 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 458, + "killerUnitTagRecycle": 1, + "loop": 9797, + "unitTagIndex": 368, + "unitTagRecycle": 2, + "x": 43, + "y": 66 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9801, + "unitTagIndex": 441, + "unitTagRecycle": 4, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9806, + "unitTagIndex": 453, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9807, + "unitTagIndex": 478, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9807, + "unitTagIndex": 483, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9814, + "unitTagIndex": 497, + "unitTagRecycle": 5, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9815, + "unitTagIndex": 498, + "unitTagRecycle": 3, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 71, + "y": 27 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 298, + "killerUnitTagRecycle": 1, + "loop": 9820, + "unitTagIndex": 403, + "unitTagRecycle": 2, + "x": 63, + "y": 85 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 9839, + "unitTagIndex": 466, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 193, + "id": 8, + "items": [ + 0, + 60, + 83, + 52, + 49, + 81, + 37, + 60, + 85, + 11, + 55, + 74, + 4, + 60, + 83, + 1, + 59, + 85, + 6, + 59, + 84, + 13, + 62, + 88, + 16, + 55, + 78, + 64, + 60, + 84, + 9, + 60, + 83, + 12, + 54, + 77, + 1, + 52, + 76, + 9, + 59, + 84, + 26, + 59, + 81, + 4, + 53, + 72 + ], + "loop": 9840 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9843, + "unitTagIndex": 485, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 397, + "killerUnitTagRecycle": 2, + "loop": 9845, + "unitTagIndex": 364, + "unitTagRecycle": 11, + "x": 55, + "y": 88 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 193, + "killerUnitTagRecycle": 3, + "loop": 9852, + "unitTagIndex": 317, + "unitTagRecycle": 1, + "x": 62, + "y": 88 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9858, + "unitTagIndex": 468, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9862, + "unitTagIndex": 368, + "unitTagRecycle": 5, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9865, + "unitTagIndex": 484, + "unitTagRecycle": 2, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9865, + "unitTagIndex": 486, + "unitTagRecycle": 4, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 406, + "killerUnitTagRecycle": 1, + "loop": 9874, + "unitTagIndex": 258, + "unitTagRecycle": 2, + "x": 63, + "y": 92 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 257, + "killerUnitTagRecycle": 2, + "loop": 9919, + "unitTagIndex": 203, + "unitTagRecycle": 5, + "x": 68, + "y": 97 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 9920, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 466944, + "scoreValueFoodUsed": 460800, + "scoreValueMineralsCollectionRate": 1820, + "scoreValueMineralsCurrent": 213, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 150, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 262, + "scoreValueMineralsLostEconomy": 200, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1925, + "scoreValueMineralsUsedCurrentArmy": 2075, + "scoreValueMineralsUsedCurrentEconomy": 6000, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 700, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 720, + "scoreValueVespeneCurrent": 158, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 12, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 800, + "scoreValueVespeneUsedCurrentArmy": 800, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 500, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 66 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 9920, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 479232, + "scoreValueFoodUsed": 466944, + "scoreValueMineralsCollectionRate": 1720, + "scoreValueMineralsCurrent": 299, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 250, + "scoreValueMineralsKilledEconomy": 200, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 150, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2375, + "scoreValueMineralsUsedCurrentArmy": 2375, + "scoreValueMineralsUsedCurrentEconomy": 5700, + "scoreValueMineralsUsedCurrentTechnology": 2050, + "scoreValueMineralsUsedInProgressArmy": 300, + "scoreValueMineralsUsedInProgressEconomy": 250, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 480, + "scoreValueVespeneCurrent": 525, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 775, + "scoreValueVespeneUsedCurrentArmy": 775, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 425, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 150, + "scoreValueWorkersActiveCount": 57 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9920, + "unitTagIndex": 338, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9925, + "unitTagIndex": 440, + "unitTagRecycle": 2, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9926, + "unitTagIndex": 477, + "unitTagRecycle": 4, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 9926, + "unitTagIndex": 488, + "unitTagRecycle": 3, + "unitTypeName": "BanelingCocoon" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 9933, + "unitTagIndex": 203, + "unitTagRecycle": 6, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 367, + "killerUnitTagRecycle": 3, + "loop": 9960, + "unitTagIndex": 273, + "unitTagRecycle": 9, + "x": 69, + "y": 96 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 428, + "killerUnitTagRecycle": 1, + "loop": 9962, + "unitTagIndex": 274, + "unitTagRecycle": 3, + "x": 73, + "y": 95 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 397, + "killerUnitTagRecycle": 2, + "loop": 9964, + "unitTagIndex": 356, + "unitTagRecycle": 2, + "x": 70, + "y": 98 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 386, + "killerUnitTagRecycle": 3, + "loop": 9966, + "unitTagIndex": 236, + "unitTagRecycle": 10, + "x": 71, + "y": 93 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 360, + "killerUnitTagRecycle": 1, + "loop": 9970, + "unitTagIndex": 344, + "unitTagRecycle": 2, + "x": 69, + "y": 87 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 10001, + "unitTagIndex": 452, + "unitTagRecycle": 4 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 367, + "killerUnitTagRecycle": 3, + "loop": 10002, + "unitTagIndex": 290, + "unitTagRecycle": 1, + "x": 69, + "y": 103 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 406, + "killerUnitTagRecycle": 1, + "loop": 10013, + "unitTagIndex": 443, + "unitTagRecycle": 2, + "x": 69, + "y": 104 + }, + { + "count": 1, + "evtTypeName": "Upgrade", + "id": 5, + "loop": 10027, + "playerId": 1, + "upgradeTypeName": "CentrificalHooks" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 431, + "killerUnitTagRecycle": 1, + "loop": 10030, + "unitTagIndex": 400, + "unitTagRecycle": 2, + "x": 69, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 193, + "killerUnitTagRecycle": 3, + "loop": 10042, + "unitTagIndex": 357, + "unitTagRecycle": 2, + "x": 69, + "y": 106 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10047, + "unitTagIndex": 357, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10054, + "unitTagIndex": 400, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10060, + "unitTagIndex": 443, + "unitTagRecycle": 3, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 22, + "y": 28 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10063, + "unitTagIndex": 290, + "unitTagRecycle": 2, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 54, + "y": 32 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 421, + "killerUnitTagRecycle": 2, + "loop": 10071, + "unitTagIndex": 285, + "unitTagRecycle": 1, + "x": 63, + "y": 100 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 10080, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 434176, + "scoreValueFoodUsed": 434176, + "scoreValueMineralsCollectionRate": 1800, + "scoreValueMineralsCurrent": 437, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 150, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 418, + "scoreValueMineralsLostEconomy": 500, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1675, + "scoreValueMineralsUsedCurrentArmy": 1925, + "scoreValueMineralsUsedCurrentEconomy": 5700, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 775, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 688, + "scoreValueVespeneCurrent": 189, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 50, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 18, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 800, + "scoreValueVespeneUsedCurrentArmy": 800, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 575, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 62 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 10080, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 512000, + "scoreValueFoodUsed": 479232, + "scoreValueMineralsCollectionRate": 1740, + "scoreValueMineralsCurrent": 414, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 400, + "scoreValueMineralsKilledEconomy": 500, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 150, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2375, + "scoreValueMineralsUsedCurrentArmy": 2375, + "scoreValueMineralsUsedCurrentEconomy": 5900, + "scoreValueMineralsUsedCurrentTechnology": 2050, + "scoreValueMineralsUsedInProgressArmy": 450, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 601, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 0, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 50, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 775, + "scoreValueVespeneUsedCurrentArmy": 775, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 425, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 150, + "scoreValueWorkersActiveCount": 59 + } + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 193, + "id": 8, + "items": [ + 0, + 65, + 104, + 52, + 48, + 83, + 6, + 65, + 107, + 4, + 72, + 110, + 2, + 66, + 102, + 21, + 70, + 105, + 4, + 70, + 103, + 4, + 69, + 101, + 7, + 70, + 102, + 4, + 66, + 105, + 1, + 66, + 104, + 6, + 64, + 106, + 4, + 65, + 106, + 15, + 69, + 106, + 10, + 72, + 99, + 27, + 70, + 102, + 7, + 66, + 101, + 19, + 66, + 103, + 11, + 65, + 106, + 8, + 68, + 100, + 1, + 66, + 104, + 3, + 65, + 105, + 9, + 71, + 98, + 1, + 70, + 97, + 2, + 69, + 101, + 6, + 70, + 102, + 1, + 65, + 105, + 3, + 68, + 101, + 23, + 67, + 102, + 4, + 69, + 100, + 33, + 72, + 111, + 5, + 72, + 109 + ], + "loop": 10080 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 323, + "killerUnitTagRecycle": 1, + "loop": 10080, + "unitTagIndex": 255, + "unitTagRecycle": 3, + "x": 72, + "y": 110 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 323, + "killerUnitTagRecycle": 1, + "loop": 10093, + "unitTagIndex": 470, + "unitTagRecycle": 1, + "x": 71, + "y": 103 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 387, + "killerUnitTagRecycle": 2, + "loop": 10102, + "unitTagIndex": 360, + "unitTagRecycle": 1, + "x": 70, + "y": 102 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10109, + "unitTagIndex": 447, + "unitTagRecycle": 2, + "x": 71, + "y": 103 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10109, + "unitTagIndex": 427, + "unitTagRecycle": 2, + "x": 70, + "y": 102 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10109, + "unitTagIndex": 293, + "unitTagRecycle": 2, + "x": 70, + "y": 102 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10111, + "unitTagIndex": 273, + "unitTagRecycle": 12, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 71, + "y": 27 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10115, + "unitTagIndex": 438, + "unitTagRecycle": 13, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10115, + "unitTagIndex": 442, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10115, + "unitTagIndex": 442, + "unitTagRecycle": 2, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 429, + "killerUnitTagRecycle": 4, + "loop": 10116, + "unitTagIndex": 282, + "unitTagRecycle": 2, + "x": 70, + "y": 103 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10118, + "unitTagIndex": 442, + "unitTagRecycle": 3, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 21, + "y": 108 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10118, + "unitTagIndex": 474, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10118, + "unitTagIndex": 474, + "unitTagRecycle": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10122, + "unitTagIndex": 274, + "unitTagRecycle": 7, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10122, + "unitTagIndex": 475, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10122, + "unitTagIndex": 475, + "unitTagRecycle": 2, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 367, + "killerUnitTagRecycle": 3, + "loop": 10123, + "unitTagIndex": 446, + "unitTagRecycle": 2, + "x": 69, + "y": 105 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 341, + "killerUnitTagRecycle": 1, + "loop": 10127, + "unitTagIndex": 278, + "unitTagRecycle": 3, + "x": 70, + "y": 105 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10130, + "unitTagIndex": 293, + "unitTagRecycle": 4, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10130, + "unitTagIndex": 476, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10130, + "unitTagIndex": 476, + "unitTagRecycle": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 419, + "killerUnitTagRecycle": 1, + "loop": 10130, + "unitTagIndex": 465, + "unitTagRecycle": 1, + "x": 74, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 304, + "killerUnitTagRecycle": 3, + "loop": 10131, + "unitTagIndex": 455, + "unitTagRecycle": 2, + "x": 69, + "y": 105 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 261, + "killerUnitTagRecycle": 1, + "loop": 10134, + "unitTagIndex": 323, + "unitTagRecycle": 1, + "x": 69, + "y": 106 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10138, + "unitTagIndex": 254, + "unitTagRecycle": 2, + "x": 68, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10138, + "unitTagIndex": 257, + "unitTagRecycle": 2, + "x": 67, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10138, + "unitTagIndex": 367, + "unitTagRecycle": 3, + "x": 66, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10138, + "unitTagIndex": 298, + "unitTagRecycle": 1, + "x": 66, + "y": 103 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10138, + "unitTagIndex": 409, + "unitTagRecycle": 2, + "x": 65, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10138, + "unitTagIndex": 297, + "unitTagRecycle": 1, + "x": 65, + "y": 103 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10138, + "unitTagIndex": 386, + "unitTagRecycle": 3, + "x": 65, + "y": 105 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 193, + "killerUnitTagRecycle": 3, + "loop": 10139, + "unitTagIndex": 429, + "unitTagRecycle": 4, + "x": 69, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 286, + "killerUnitTagRecycle": 4, + "loop": 10150, + "unitTagIndex": 414, + "unitTagRecycle": 2, + "x": 73, + "y": 101 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 406, + "killerUnitTagRecycle": 1, + "loop": 10153, + "unitTagIndex": 339, + "unitTagRecycle": 1, + "x": 68, + "y": 106 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 304, + "killerUnitTagRecycle": 3, + "loop": 10154, + "unitTagIndex": 318, + "unitTagRecycle": 1, + "x": 68, + "y": 106 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 489, + "killerUnitTagRecycle": 3, + "loop": 10155, + "unitTagIndex": 308, + "unitTagRecycle": 3, + "x": 68, + "y": 107 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 207, + "killerUnitTagRecycle": 1, + "loop": 10156, + "unitTagIndex": 435, + "unitTagRecycle": 1, + "x": 46, + "y": 32 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10159, + "unitTagIndex": 203, + "unitTagRecycle": 6, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10165, + "unitTagIndex": 357, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10166, + "unitTagIndex": 400, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10167, + "unitTagIndex": 492, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10167, + "unitTagIndex": 493, + "unitTagRecycle": 4, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10167, + "unitTagIndex": 494, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10169, + "unitTagIndex": 497, + "unitTagRecycle": 5, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 397, + "killerUnitTagRecycle": 2, + "loop": 10174, + "unitTagIndex": 487, + "unitTagRecycle": 2, + "x": 65, + "y": 106 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 406, + "killerUnitTagRecycle": 1, + "loop": 10176, + "unitTagIndex": 336, + "unitTagRecycle": 1, + "x": 65, + "y": 107 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 286, + "killerUnitTagRecycle": 4, + "loop": 10177, + "unitTagIndex": 467, + "unitTagRecycle": 1, + "x": 73, + "y": 102 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10178, + "unitTagIndex": 356, + "unitTagRecycle": 8, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10178, + "unitTagIndex": 468, + "unitTagRecycle": 1, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10178, + "unitTagIndex": 468, + "unitTagRecycle": 1, + "x": 75, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 251, + "killerUnitTagRecycle": 1, + "loop": 10179, + "unitTagIndex": 489, + "unitTagRecycle": 3, + "x": 66, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10185, + "unitTagIndex": 318, + "unitTagRecycle": 4, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10185, + "unitTagIndex": 476, + "unitTagRecycle": 6, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10185, + "unitTagIndex": 441, + "unitTagRecycle": 4, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10185, + "unitTagIndex": 441, + "unitTagRecycle": 4, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10185, + "unitTagIndex": 258, + "unitTagRecycle": 9, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 78, + "y": 106 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10185, + "unitTagIndex": 486, + "unitTagRecycle": 4, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10185, + "unitTagIndex": 486, + "unitTagRecycle": 4, + "x": 78, + "y": 106 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10185, + "unitTagIndex": 409, + "unitTagRecycle": 4, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 77, + "y": 105 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10185, + "unitTagIndex": 484, + "unitTagRecycle": 2, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10185, + "unitTagIndex": 484, + "unitTagRecycle": 2, + "x": 77, + "y": 105 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10190, + "unitTagIndex": 489, + "unitTagRecycle": 5, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 73, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10190, + "unitTagIndex": 441, + "unitTagRecycle": 5, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 73, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10190, + "unitTagIndex": 453, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10190, + "unitTagIndex": 453, + "unitTagRecycle": 3, + "x": 73, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 419, + "killerUnitTagRecycle": 1, + "loop": 10190, + "unitTagIndex": 385, + "unitTagRecycle": 2, + "x": 74, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10191, + "unitTagIndex": 403, + "unitTagRecycle": 13, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10191, + "unitTagIndex": 475, + "unitTagRecycle": 10, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10191, + "unitTagIndex": 483, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10191, + "unitTagIndex": 483, + "unitTagRecycle": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10191, + "unitTagIndex": 386, + "unitTagRecycle": 7, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10191, + "unitTagIndex": 486, + "unitTagRecycle": 5, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 19, + "y": 108 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10191, + "unitTagIndex": 478, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10191, + "unitTagIndex": 478, + "unitTagRecycle": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10192, + "unitTagIndex": 453, + "unitTagRecycle": 4, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 419, + "killerUnitTagRecycle": 1, + "loop": 10192, + "unitTagIndex": 340, + "unitTagRecycle": 4, + "x": 75, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 397, + "killerUnitTagRecycle": 2, + "loop": 10195, + "unitTagIndex": 490, + "unitTagRecycle": 2, + "x": 65, + "y": 106 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10198, + "unitTagIndex": 490, + "unitTagRecycle": 3, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 24, + "y": 27 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 304, + "killerUnitTagRecycle": 3, + "loop": 10207, + "unitTagIndex": 469, + "unitTagRecycle": 1, + "x": 64, + "y": 108 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10214, + "unitTagIndex": 356, + "unitTagRecycle": 8, + "x": 69, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10214, + "unitTagIndex": 421, + "unitTagRecycle": 2, + "x": 69, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10214, + "unitTagIndex": 286, + "unitTagRecycle": 4, + "x": 68, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 333, + "killerUnitTagRecycle": 3, + "loop": 10217, + "unitTagIndex": 387, + "unitTagRecycle": 2, + "x": 76, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 304, + "killerUnitTagRecycle": 3, + "loop": 10218, + "unitTagIndex": 341, + "unitTagRecycle": 1, + "x": 65, + "y": 107 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 428, + "killerUnitTagRecycle": 1, + "loop": 10221, + "unitTagIndex": 479, + "unitTagRecycle": 3, + "x": 65, + "y": 106 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 473, + "killerUnitTagRecycle": 1, + "loop": 10230, + "unitTagIndex": 333, + "unitTagRecycle": 3, + "x": 72, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 405, + "killerUnitTagRecycle": 1, + "loop": 10236, + "unitTagIndex": 475, + "unitTagRecycle": 10, + "x": 68, + "y": 98 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 406, + "killerUnitTagRecycle": 1, + "loop": 10238, + "unitTagIndex": 274, + "unitTagRecycle": 7, + "x": 64, + "y": 102 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10239, + "unitTagIndex": 475, + "unitTagRecycle": 11, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10239, + "unitTagIndex": 478, + "unitTagRecycle": 7, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 24, + "y": 30 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 10240, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 434176, + "scoreValueFoodUsed": 366592, + "scoreValueMineralsCollectionRate": 1360, + "scoreValueMineralsCurrent": 287, + "scoreValueMineralsFriendlyFireArmy": 150, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1050, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1468, + "scoreValueMineralsLostEconomy": 550, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1225, + "scoreValueMineralsUsedCurrentArmy": 1400, + "scoreValueMineralsUsedCurrentEconomy": 5650, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 450, + "scoreValueMineralsUsedInProgressEconomy": 450, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 560, + "scoreValueVespeneCurrent": 273, + "scoreValueVespeneFriendlyFireArmy": 75, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 718, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 500, + "scoreValueVespeneUsedCurrentArmy": 500, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 100, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 61 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 10240, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 512000, + "scoreValueFoodUsed": 421888, + "scoreValueMineralsCollectionRate": 1780, + "scoreValueMineralsCurrent": 409, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1450, + "scoreValueMineralsKilledEconomy": 550, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1050, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1675, + "scoreValueMineralsUsedCurrentArmy": 1675, + "scoreValueMineralsUsedCurrentEconomy": 5950, + "scoreValueMineralsUsedCurrentTechnology": 2050, + "scoreValueMineralsUsedInProgressArmy": 450, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 448, + "scoreValueVespeneCurrent": 677, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 700, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 625, + "scoreValueVespeneUsedCurrentArmy": 625, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 425, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 150, + "scoreValueWorkersActiveCount": 60 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10240, + "unitTagIndex": 274, + "unitTagRecycle": 8, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 83, + "y": 90 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10240, + "unitTagIndex": 338, + "unitTagRecycle": 1, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10240, + "unitTagIndex": 338, + "unitTagRecycle": 1, + "x": 83, + "y": 90 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10240, + "unitTagIndex": 333, + "unitTagRecycle": 5, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10243, + "unitTagIndex": 297, + "unitTagRecycle": 9, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10243, + "unitTagIndex": 485, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10243, + "unitTagIndex": 485, + "unitTagRecycle": 1, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10245, + "unitTagIndex": 485, + "unitTagRecycle": 2, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 84, + "y": 91 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10245, + "unitTagIndex": 440, + "unitTagRecycle": 2, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10245, + "unitTagIndex": 440, + "unitTagRecycle": 2, + "x": 84, + "y": 91 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10246, + "unitTagIndex": 278, + "unitTagRecycle": 8, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 84, + "y": 90 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10246, + "unitTagIndex": 488, + "unitTagRecycle": 3, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10246, + "unitTagIndex": 488, + "unitTagRecycle": 3, + "x": 84, + "y": 90 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10246, + "unitTagIndex": 387, + "unitTagRecycle": 3, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 84, + "y": 90 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10246, + "unitTagIndex": 477, + "unitTagRecycle": 4, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10246, + "unitTagIndex": 477, + "unitTagRecycle": 4, + "x": 84, + "y": 90 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10253, + "unitTagIndex": 488, + "unitTagRecycle": 4, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 23, + "y": 28 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 280, + "killerUnitTagRecycle": 2, + "loop": 10272, + "unitTagIndex": 431, + "unitTagRecycle": 1, + "x": 67, + "y": 97 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 261, + "killerUnitTagRecycle": 1, + "loop": 10276, + "unitTagIndex": 193, + "unitTagRecycle": 3, + "x": 66, + "y": 104 + }, + { + "count": 1, + "evtTypeName": "Upgrade", + "id": 5, + "loop": 10280, + "playerId": 1, + "upgradeTypeName": "ZergFlyerWeaponsLevel1" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10287, + "unitTagIndex": 479, + "unitTagRecycle": 7, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 10291, + "unitTagIndex": 463, + "unitTagRecycle": 1 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10292, + "unitTagIndex": 338, + "unitTagRecycle": 6, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10294, + "unitTagIndex": 431, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10296, + "unitTagIndex": 341, + "unitTagRecycle": 6, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10300, + "unitTagIndex": 468, + "unitTagRecycle": 8, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 73, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 418, + "killerUnitTagRecycle": 1, + "loop": 10310, + "unitTagIndex": 473, + "unitTagRecycle": 1, + "x": 72, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 280, + "killerUnitTagRecycle": 2, + "loop": 10315, + "unitTagIndex": 405, + "unitTagRecycle": 1, + "x": 68, + "y": 98 + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 261, + "id": 8, + "items": [ + 0, + 71, + 109, + 19, + 63, + 96, + 24, + 67, + 107, + 99, + 68, + 106, + 3, + 65, + 107, + 12, + 71, + 100, + 1, + 70, + 99, + 9, + 67, + 107, + 10, + 66, + 97, + 3, + 69, + 100, + 1, + 66, + 98, + 20, + 65, + 105, + 14, + 68, + 100, + 13, + 69, + 100 + ], + "loop": 10320 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 441, + "killerUnitTagRecycle": 5, + "loop": 10330, + "unitTagIndex": 458, + "unitTagRecycle": 1, + "x": 69, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 454, + "killerUnitTagRecycle": 3, + "loop": 10334, + "unitTagIndex": 441, + "unitTagRecycle": 5, + "x": 69, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10340, + "unitTagIndex": 338, + "unitTagRecycle": 6, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10346, + "unitTagIndex": 274, + "unitTagRecycle": 8, + "x": 68, + "y": 107 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10346, + "unitTagIndex": 428, + "unitTagRecycle": 1, + "x": 67, + "y": 107 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10346, + "unitTagIndex": 397, + "unitTagRecycle": 2, + "x": 66, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10368, + "unitTagIndex": 397, + "unitTagRecycle": 4, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "count": 1, + "evtTypeName": "Upgrade", + "id": 5, + "loop": 10379, + "playerId": 2, + "upgradeTypeName": "TerranInfantryWeaponsLevel1" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10379, + "unitTagIndex": 341, + "unitTagRecycle": 6, + "unitTypeName": "Egg" + }, + { + "count": 1, + "evtTypeName": "Upgrade", + "id": 5, + "loop": 10380, + "playerId": 2, + "upgradeTypeName": "TerranInfantryArmorsLevel1" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10385, + "unitTagIndex": 431, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10386, + "unitTagIndex": 468, + "unitTagRecycle": 8, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10386, + "unitTagIndex": 479, + "unitTagRecycle": 7, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 10400, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 466944, + "scoreValueFoodUsed": 374784, + "scoreValueMineralsCollectionRate": 1280, + "scoreValueMineralsCurrent": 252, + "scoreValueMineralsFriendlyFireArmy": 200, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1350, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1593, + "scoreValueMineralsLostEconomy": 550, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1250, + "scoreValueMineralsUsedCurrentArmy": 1325, + "scoreValueMineralsUsedCurrentEconomy": 5750, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 600, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 576, + "scoreValueVespeneCurrent": 369, + "scoreValueVespeneFriendlyFireArmy": 100, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 818, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 475, + "scoreValueVespeneUsedCurrentArmy": 475, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 61 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 10400, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 512000, + "scoreValueFoodUsed": 425984, + "scoreValueMineralsCollectionRate": 1640, + "scoreValueMineralsCurrent": 394, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1575, + "scoreValueMineralsKilledEconomy": 550, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1350, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1525, + "scoreValueMineralsUsedCurrentArmy": 1525, + "scoreValueMineralsUsedCurrentEconomy": 5950, + "scoreValueMineralsUsedCurrentTechnology": 2200, + "scoreValueMineralsUsedInProgressArmy": 650, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 50, + "scoreValueVespeneCollectionRate": 448, + "scoreValueVespeneCurrent": 557, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 800, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 625, + "scoreValueVespeneUsedCurrentArmy": 625, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 525, + "scoreValueVespeneUsedInProgressArmy": 200, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 50, + "scoreValueWorkersActiveCount": 60 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10420, + "unitTagIndex": 421, + "unitTagRecycle": 11, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 23, + "y": 31 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10439, + "unitTagIndex": 428, + "unitTagRecycle": 9, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 442, + "killerUnitTagRecycle": 3, + "loop": 10453, + "unitTagIndex": 454, + "unitTagRecycle": 3, + "x": 83, + "y": 105 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 10470, + "unitTagIndex": 448, + "unitTagRecycle": 3 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 406, + "killerUnitTagRecycle": 1, + "loop": 10471, + "unitTagIndex": 486, + "unitTagRecycle": 5, + "x": 86, + "y": 106 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10473, + "unitTagIndex": 441, + "unitTagRecycle": 21, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 33, + "y": 32 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10479, + "unitTagIndex": 278, + "unitTagRecycle": 8, + "x": 86, + "y": 106 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10479, + "unitTagIndex": 251, + "unitTagRecycle": 1, + "x": 88, + "y": 106 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10479, + "unitTagIndex": 304, + "unitTagRecycle": 3, + "x": 88, + "y": 105 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10486, + "unitTagIndex": 485, + "unitTagRecycle": 2, + "x": 86, + "y": 106 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10486, + "unitTagIndex": 406, + "unitTagRecycle": 1, + "x": 87, + "y": 106 + }, + { + "count": 1, + "evtTypeName": "Upgrade", + "id": 5, + "loop": 10524, + "playerId": 1, + "upgradeTypeName": "ZergGroundArmorsLevel1" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10527, + "unitTagIndex": 406, + "unitTagRecycle": 4, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 418, + "killerUnitTagRecycle": 1, + "loop": 10531, + "unitTagIndex": 438, + "unitTagRecycle": 13, + "x": 92, + "y": 103 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 418, + "killerUnitTagRecycle": 1, + "loop": 10531, + "unitTagIndex": 442, + "unitTagRecycle": 3, + "x": 92, + "y": 102 + }, + { + "count": 1, + "evtTypeName": "Upgrade", + "id": 5, + "loop": 10533, + "playerId": 1, + "upgradeTypeName": "ZergMeleeWeaponsLevel1" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10534, + "unitTagIndex": 438, + "unitTagRecycle": 14, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10543, + "unitTagIndex": 485, + "unitTagRecycle": 6, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10543, + "unitTagIndex": 251, + "unitTagRecycle": 5, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10543, + "unitTagIndex": 203, + "unitTagRecycle": 6, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10543, + "unitTagIndex": 203, + "unitTagRecycle": 6, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10549, + "unitTagIndex": 274, + "unitTagRecycle": 18, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10549, + "unitTagIndex": 203, + "unitTagRecycle": 7, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10549, + "unitTagIndex": 357, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10549, + "unitTagIndex": 357, + "unitTagRecycle": 3, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10550, + "unitTagIndex": 454, + "unitTagRecycle": 7, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10550, + "unitTagIndex": 469, + "unitTagRecycle": 14, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10550, + "unitTagIndex": 400, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10550, + "unitTagIndex": 400, + "unitTagRecycle": 3, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10551, + "unitTagIndex": 357, + "unitTagRecycle": 4, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10551, + "unitTagIndex": 193, + "unitTagRecycle": 12, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10551, + "unitTagIndex": 492, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10551, + "unitTagIndex": 492, + "unitTagRecycle": 2, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10551, + "unitTagIndex": 304, + "unitTagRecycle": 5, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10551, + "unitTagIndex": 442, + "unitTagRecycle": 4, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10551, + "unitTagIndex": 493, + "unitTagRecycle": 4, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10551, + "unitTagIndex": 493, + "unitTagRecycle": 4, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10551, + "unitTagIndex": 483, + "unitTagRecycle": 14, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 72, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10551, + "unitTagIndex": 278, + "unitTagRecycle": 9, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 72, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10551, + "unitTagIndex": 494, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10551, + "unitTagIndex": 494, + "unitTagRecycle": 1, + "x": 72, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10553, + "unitTagIndex": 493, + "unitTagRecycle": 5, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10553, + "unitTagIndex": 492, + "unitTagRecycle": 3, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 106 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10553, + "unitTagIndex": 497, + "unitTagRecycle": 5, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10553, + "unitTagIndex": 497, + "unitTagRecycle": 5, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 10560, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 466944, + "scoreValueFoodUsed": 352256, + "scoreValueMineralsCollectionRate": 1320, + "scoreValueMineralsCurrent": 482, + "scoreValueMineralsFriendlyFireArmy": 300, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1550, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1818, + "scoreValueMineralsLostEconomy": 550, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1275, + "scoreValueMineralsUsedCurrentArmy": 1350, + "scoreValueMineralsUsedCurrentEconomy": 5750, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 250, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 544, + "scoreValueVespeneCurrent": 457, + "scoreValueVespeneFriendlyFireArmy": 150, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1018, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 225, + "scoreValueVespeneUsedCurrentArmy": 225, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 61 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 10560, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 512000, + "scoreValueFoodUsed": 417792, + "scoreValueMineralsCollectionRate": 1760, + "scoreValueMineralsCurrent": 534, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1800, + "scoreValueMineralsKilledEconomy": 550, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1550, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1425, + "scoreValueMineralsUsedCurrentArmy": 1425, + "scoreValueMineralsUsedCurrentEconomy": 5950, + "scoreValueMineralsUsedCurrentTechnology": 2250, + "scoreValueMineralsUsedInProgressArmy": 650, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 637, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1000, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 625, + "scoreValueVespeneUsedCurrentArmy": 625, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 575, + "scoreValueVespeneUsedInProgressArmy": 200, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 60 + } + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 261, + "id": 8, + "items": [ + 0, + 78, + 110, + 3, + 74, + 103, + 16, + 77, + 104, + 13, + 83, + 101, + 22, + 94, + 105, + 3, + 83, + 101, + 68, + 81, + 99, + 17, + 81, + 100, + 15, + 100, + 102, + 1, + 100, + 101, + 42, + 99, + 104, + 1, + 95, + 103, + 14, + 81, + 101, + 13, + 82, + 100 + ], + "loop": 10560 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10571, + "unitTagIndex": 406, + "unitTagRecycle": 4, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10575, + "unitTagIndex": 428, + "unitTagRecycle": 9, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10591, + "unitTagIndex": 497, + "unitTagRecycle": 6, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10597, + "unitTagIndex": 494, + "unitTagRecycle": 2, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 23, + "y": 29 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10597, + "unitTagIndex": 438, + "unitTagRecycle": 14, + "unitTypeName": "Egg" + }, + { + "count": 1, + "evtTypeName": "Upgrade", + "id": 5, + "loop": 10598, + "playerId": 2, + "upgradeTypeName": "ShieldWall" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10600, + "unitTagIndex": 400, + "unitTagRecycle": 4, + "unitTypeName": "MULE", + "upkeepPlayerId": 2, + "x": 69, + "y": 26 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10604, + "unitTagIndex": 414, + "unitTagRecycle": 21, + "unitTypeName": "MULE", + "upkeepPlayerId": 2, + "x": 65, + "y": 29 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10638, + "unitTagIndex": 458, + "unitTagRecycle": 5, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 23, + "y": 32 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10638, + "unitTagIndex": 486, + "unitTagRecycle": 6, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10639, + "unitTagIndex": 440, + "unitTagRecycle": 12, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10652, + "unitTagIndex": 367, + "unitTagRecycle": 18, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 23, + "y": 30 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 10663, + "unitTagIndex": 340, + "unitTagRecycle": 16, + "unitTypeName": "Factory", + "upkeepPlayerId": 2, + "x": 44, + "y": 34 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10679, + "unitTagIndex": 344, + "unitTagRecycle": 9, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10694, + "unitTagIndex": 90, + "unitTagRecycle": 1, + "x": 14, + "y": 112 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10710, + "unitTagIndex": 344, + "unitTagRecycle": 9, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 10720, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 466944, + "scoreValueFoodUsed": 393216, + "scoreValueMineralsCollectionRate": 1760, + "scoreValueMineralsCurrent": 247, + "scoreValueMineralsFriendlyFireArmy": 300, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1550, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1818, + "scoreValueMineralsLostEconomy": 550, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1275, + "scoreValueMineralsUsedCurrentArmy": 1350, + "scoreValueMineralsUsedCurrentEconomy": 5750, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 800, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 560, + "scoreValueVespeneCurrent": 153, + "scoreValueVespeneFriendlyFireArmy": 150, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1018, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 225, + "scoreValueVespeneUsedCurrentArmy": 225, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 400, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 61 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 10720, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 512000, + "scoreValueFoodUsed": 458752, + "scoreValueMineralsCollectionRate": 1720, + "scoreValueMineralsCurrent": 314, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1800, + "scoreValueMineralsKilledEconomy": 550, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1550, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1725, + "scoreValueMineralsUsedCurrentArmy": 1725, + "scoreValueMineralsUsedCurrentEconomy": 5950, + "scoreValueMineralsUsedCurrentTechnology": 2250, + "scoreValueMineralsUsedInProgressArmy": 800, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 464, + "scoreValueVespeneCurrent": 563, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1000, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 625, + "scoreValueVespeneUsedCurrentArmy": 625, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 575, + "scoreValueVespeneUsedInProgressArmy": 250, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 60 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10724, + "unitTagIndex": 90, + "unitTagRecycle": 2, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10724, + "unitTagIndex": 286, + "unitTagRecycle": 7, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 73, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10724, + "unitTagIndex": 338, + "unitTagRecycle": 6, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10724, + "unitTagIndex": 338, + "unitTagRecycle": 6, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 10729, + "unitTagIndex": 338, + "unitTagRecycle": 7, + "unitTypeName": "CreepTumor", + "upkeepPlayerId": 1, + "x": 64, + "y": 85 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10763, + "unitTagIndex": 356, + "unitTagRecycle": 11, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10763, + "unitTagIndex": 477, + "unitTagRecycle": 12, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 73, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10763, + "unitTagIndex": 341, + "unitTagRecycle": 6, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10763, + "unitTagIndex": 341, + "unitTagRecycle": 6, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10767, + "unitTagIndex": 341, + "unitTagRecycle": 7, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10767, + "unitTagIndex": 336, + "unitTagRecycle": 4, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10769, + "unitTagIndex": 473, + "unitTagRecycle": 2, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10769, + "unitTagIndex": 467, + "unitTagRecycle": 12, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10769, + "unitTagIndex": 431, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10769, + "unitTagIndex": 431, + "unitTagRecycle": 3, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10770, + "unitTagIndex": 405, + "unitTagRecycle": 3, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10770, + "unitTagIndex": 385, + "unitTagRecycle": 3, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10770, + "unitTagIndex": 479, + "unitTagRecycle": 7, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10770, + "unitTagIndex": 479, + "unitTagRecycle": 7, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10770, + "unitTagIndex": 487, + "unitTagRecycle": 5, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 73, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10770, + "unitTagIndex": 339, + "unitTagRecycle": 5, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10770, + "unitTagIndex": 468, + "unitTagRecycle": 8, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 10770, + "unitTagIndex": 468, + "unitTagRecycle": 8, + "x": 73, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10774, + "unitTagIndex": 468, + "unitTagRecycle": 9, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10819, + "unitTagIndex": 479, + "unitTagRecycle": 8, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 33 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10820, + "unitTagIndex": 336, + "unitTagRecycle": 4, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10822, + "unitTagIndex": 468, + "unitTagRecycle": 9, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10848, + "unitTagIndex": 193, + "unitTagRecycle": 12, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10853, + "unitTagIndex": 203, + "unitTagRecycle": 7, + "unitTypeName": "BanelingCocoon" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10872, + "unitTagIndex": 431, + "unitTagRecycle": 4, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 36, + "y": 31 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10875, + "unitTagIndex": 409, + "unitTagRecycle": 4, + "unitTypeName": "BanelingBurrowed" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 10875, + "unitTagIndex": 387, + "unitTagRecycle": 3, + "unitTypeName": "BanelingBurrowed" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 10880, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 466944, + "scoreValueFoodUsed": 401408, + "scoreValueMineralsCollectionRate": 1720, + "scoreValueMineralsCurrent": 352, + "scoreValueMineralsFriendlyFireArmy": 300, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1550, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1818, + "scoreValueMineralsLostEconomy": 550, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1475, + "scoreValueMineralsUsedCurrentArmy": 1600, + "scoreValueMineralsUsedCurrentEconomy": 5750, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 700, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 656, + "scoreValueVespeneCurrent": 223, + "scoreValueVespeneFriendlyFireArmy": 150, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1018, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 225, + "scoreValueVespeneUsedCurrentArmy": 225, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 450, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 61 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 10880, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 512000, + "scoreValueFoodUsed": 462848, + "scoreValueMineralsCollectionRate": 1940, + "scoreValueMineralsCurrent": 144, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1800, + "scoreValueMineralsKilledEconomy": 550, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1550, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1875, + "scoreValueMineralsUsedCurrentArmy": 1875, + "scoreValueMineralsUsedCurrentEconomy": 5950, + "scoreValueMineralsUsedCurrentTechnology": 2250, + "scoreValueMineralsUsedInProgressArmy": 750, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 496, + "scoreValueVespeneCurrent": 343, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1000, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 625, + "scoreValueVespeneUsedCurrentArmy": 625, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 575, + "scoreValueVespeneUsedInProgressArmy": 200, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 60 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 10897, + "unitTagIndex": 484, + "unitTagRecycle": 3, + "unitTypeName": "Refinery", + "upkeepPlayerId": 2, + "x": 72, + "y": 21 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10917, + "unitTagIndex": 429, + "unitTagRecycle": 7, + "unitTypeName": "Medivac", + "upkeepPlayerId": 2, + "x": 27, + "y": 27 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10919, + "unitTagIndex": 427, + "unitTagRecycle": 7, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10920, + "unitTagIndex": 254, + "unitTagRecycle": 4, + "unitTypeName": "Medivac", + "upkeepPlayerId": 2, + "x": 27, + "y": 25 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10990, + "unitTagIndex": 257, + "unitTagRecycle": 5, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 10996, + "unitTagIndex": 308, + "unitTagRecycle": 4, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 30 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 11005, + "unitTagIndex": 338, + "unitTagRecycle": 7 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11007, + "unitTagIndex": 435, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11008, + "unitTagIndex": 338, + "unitTagRecycle": 7, + "unitTypeName": "CreepTumorBurrowed" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11011, + "unitTagIndex": 427, + "unitTagRecycle": 7, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11014, + "unitTagIndex": 285, + "unitTagRecycle": 7, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11017, + "unitTagIndex": 435, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 11019, + "unitTagIndex": 472, + "unitTagRecycle": 1 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11019, + "unitTagIndex": 298, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 80, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11020, + "unitTagIndex": 393, + "unitTagRecycle": 1, + "x": 80, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11037, + "unitTagIndex": 393, + "unitTagRecycle": 2, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 33 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11037, + "unitTagIndex": 470, + "unitTagRecycle": 6, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11038, + "unitTagIndex": 323, + "unitTagRecycle": 2, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 11040, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 491520, + "scoreValueFoodUsed": 409600, + "scoreValueMineralsCollectionRate": 1660, + "scoreValueMineralsCurrent": 392, + "scoreValueMineralsFriendlyFireArmy": 300, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1550, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1818, + "scoreValueMineralsLostEconomy": 550, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1475, + "scoreValueMineralsUsedCurrentArmy": 1600, + "scoreValueMineralsUsedCurrentEconomy": 6100, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 800, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 704, + "scoreValueVespeneCurrent": 189, + "scoreValueVespeneFriendlyFireArmy": 150, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1018, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 225, + "scoreValueVespeneUsedCurrentArmy": 225, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 450, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 61 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 11040, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 512000, + "scoreValueFoodUsed": 499712, + "scoreValueMineralsCollectionRate": 2060, + "scoreValueMineralsCurrent": 39, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1800, + "scoreValueMineralsKilledEconomy": 550, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1550, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2325, + "scoreValueMineralsUsedCurrentArmy": 2325, + "scoreValueMineralsUsedCurrentEconomy": 5950, + "scoreValueMineralsUsedCurrentTechnology": 2250, + "scoreValueMineralsUsedInProgressArmy": 750, + "scoreValueMineralsUsedInProgressEconomy": 75, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 480, + "scoreValueVespeneCurrent": 94, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1000, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 825, + "scoreValueVespeneUsedCurrentArmy": 825, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 575, + "scoreValueVespeneUsedInProgressArmy": 325, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 60 + } + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11049, + "unitTagIndex": 104, + "unitTagRecycle": 1, + "x": 15, + "y": 106 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11051, + "unitTagIndex": 104, + "unitTagRecycle": 2, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 30 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11085, + "unitTagIndex": 285, + "unitTagRecycle": 7, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11099, + "unitTagIndex": 360, + "unitTagRecycle": 3, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11099, + "unitTagIndex": 406, + "unitTagRecycle": 4, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11099, + "unitTagIndex": 406, + "unitTagRecycle": 4, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11103, + "unitTagIndex": 406, + "unitTagRecycle": 5, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11103, + "unitTagIndex": 428, + "unitTagRecycle": 9, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11103, + "unitTagIndex": 428, + "unitTagRecycle": 9, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11125, + "unitTagIndex": 428, + "unitTagRecycle": 10, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 21, + "y": 106 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11125, + "unitTagIndex": 438, + "unitTagRecycle": 14, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11125, + "unitTagIndex": 438, + "unitTagRecycle": 14, + "x": 21, + "y": 106 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11133, + "unitTagIndex": 298, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11142, + "unitTagIndex": 7, + "unitTagRecycle": 1, + "x": 15, + "y": 21 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11159, + "unitTagIndex": 7, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11168, + "unitTagIndex": 438, + "unitTagRecycle": 15, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 62, + "y": 92 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11168, + "unitTagIndex": 193, + "unitTagRecycle": 12, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11168, + "unitTagIndex": 193, + "unitTagRecycle": 12, + "x": 62, + "y": 92 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11173, + "unitTagIndex": 193, + "unitTagRecycle": 13, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 61, + "y": 93 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11173, + "unitTagIndex": 203, + "unitTagRecycle": 7, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11173, + "unitTagIndex": 203, + "unitTagRecycle": 7, + "x": 61, + "y": 93 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 11197, + "unitTagIndex": 203, + "unitTagRecycle": 8, + "unitTypeName": "RoachWarren", + "upkeepPlayerId": 1, + "x": 69, + "y": 114 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 11200, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 491520, + "scoreValueFoodUsed": 413696, + "scoreValueMineralsCollectionRate": 1560, + "scoreValueMineralsCurrent": 172, + "scoreValueMineralsFriendlyFireArmy": 300, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1550, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1818, + "scoreValueMineralsLostEconomy": 550, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1875, + "scoreValueMineralsUsedCurrentArmy": 1950, + "scoreValueMineralsUsedCurrentEconomy": 6050, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 450, + "scoreValueMineralsUsedInProgressEconomy": 100, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 720, + "scoreValueVespeneCurrent": 84, + "scoreValueVespeneFriendlyFireArmy": 150, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1018, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 575, + "scoreValueVespeneUsedCurrentArmy": 575, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 100, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 60 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 11200, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 512000, + "scoreValueFoodUsed": 512000, + "scoreValueMineralsCollectionRate": 2080, + "scoreValueMineralsCurrent": 144, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1800, + "scoreValueMineralsKilledEconomy": 550, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1550, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2375, + "scoreValueMineralsUsedCurrentArmy": 2375, + "scoreValueMineralsUsedCurrentEconomy": 5950, + "scoreValueMineralsUsedCurrentTechnology": 2250, + "scoreValueMineralsUsedInProgressArmy": 850, + "scoreValueMineralsUsedInProgressEconomy": 75, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 448, + "scoreValueVespeneCurrent": 166, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1000, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 825, + "scoreValueVespeneUsedCurrentArmy": 825, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 575, + "scoreValueVespeneUsedInProgressArmy": 325, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 60 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11204, + "unitTagIndex": 455, + "unitTagRecycle": 3, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11204, + "unitTagIndex": 255, + "unitTagRecycle": 7, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11204, + "unitTagIndex": 336, + "unitTagRecycle": 4, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11204, + "unitTagIndex": 336, + "unitTagRecycle": 4, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11206, + "unitTagIndex": 336, + "unitTagRecycle": 5, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11206, + "unitTagIndex": 364, + "unitTagRecycle": 15, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11206, + "unitTagIndex": 468, + "unitTagRecycle": 9, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11206, + "unitTagIndex": 468, + "unitTagRecycle": 9, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11233, + "unitTagIndex": 468, + "unitTagRecycle": 10, + "unitTypeName": "Hellion", + "upkeepPlayerId": 2, + "x": 27, + "y": 24 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11235, + "unitTagIndex": 465, + "unitTagRecycle": 2, + "unitTypeName": "Hellion", + "upkeepPlayerId": 2, + "x": 27, + "y": 21 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11238, + "unitTagIndex": 474, + "unitTagRecycle": 3, + "unitTypeName": "Mutalisk", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11238, + "unitTagIndex": 344, + "unitTagRecycle": 9, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11238, + "unitTagIndex": 344, + "unitTagRecycle": 9, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11247, + "unitTagIndex": 344, + "unitTagRecycle": 10, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11249, + "unitTagIndex": 236, + "unitTagRecycle": 13, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11253, + "unitTagIndex": 446, + "unitTagRecycle": 4, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 73, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11254, + "unitTagIndex": 447, + "unitTagRecycle": 4, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11257, + "unitTagIndex": 499, + "unitTagRecycle": 7, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 72, + "y": 105 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11259, + "unitTagIndex": 501, + "unitTagRecycle": 4, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 80, + "y": 104 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11279, + "unitTagIndex": 317, + "unitTagRecycle": 8, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11281, + "unitTagIndex": 282, + "unitTagRecycle": 5, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 33 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11296, + "unitTagIndex": 4, + "unitTagRecycle": 1, + "x": 15, + "y": 29 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11357, + "unitTagIndex": 4, + "unitTagRecycle": 2, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11357, + "unitTagIndex": 285, + "unitTagRecycle": 7, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11357, + "unitTagIndex": 285, + "unitTagRecycle": 7, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 11360, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 491520, + "scoreValueFoodUsed": 413696, + "scoreValueMineralsCollectionRate": 1500, + "scoreValueMineralsCurrent": 427, + "scoreValueMineralsFriendlyFireArmy": 300, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1550, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1818, + "scoreValueMineralsLostEconomy": 550, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2075, + "scoreValueMineralsUsedCurrentArmy": 2150, + "scoreValueMineralsUsedCurrentEconomy": 6100, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 250, + "scoreValueMineralsUsedInProgressEconomy": 50, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 704, + "scoreValueVespeneCurrent": 196, + "scoreValueVespeneFriendlyFireArmy": 150, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1018, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 675, + "scoreValueVespeneUsedCurrentArmy": 675, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 61 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 11360, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 544768, + "scoreValueFoodUsed": 544768, + "scoreValueMineralsCollectionRate": 1960, + "scoreValueMineralsCurrent": 140, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1800, + "scoreValueMineralsKilledEconomy": 550, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1550, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2675, + "scoreValueMineralsUsedCurrentArmy": 2675, + "scoreValueMineralsUsedCurrentEconomy": 5950, + "scoreValueMineralsUsedCurrentTechnology": 2250, + "scoreValueMineralsUsedInProgressArmy": 800, + "scoreValueMineralsUsedInProgressEconomy": 225, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 448, + "scoreValueVespeneCurrent": 227, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1000, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 825, + "scoreValueVespeneUsedCurrentArmy": 825, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 575, + "scoreValueVespeneUsedInProgressArmy": 325, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 60 + } + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 11377, + "unitTagIndex": 484, + "unitTagRecycle": 3 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11383, + "unitTagIndex": 107, + "unitTagRecycle": 1, + "x": 15, + "y": 114 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11395, + "unitTagIndex": 107, + "unitTagRecycle": 2, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11395, + "unitTagIndex": 285, + "unitTagRecycle": 8, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11395, + "unitTagIndex": 427, + "unitTagRecycle": 7, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11395, + "unitTagIndex": 427, + "unitTagRecycle": 7, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11398, + "unitTagIndex": 427, + "unitTagRecycle": 8, + "unitTypeName": "Marauder", + "upkeepPlayerId": 2, + "x": 36, + "y": 31 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11400, + "unitTagIndex": 465, + "unitTagRecycle": 2, + "unitTypeName": "HellionTank" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11400, + "unitTagIndex": 468, + "unitTagRecycle": 10, + "unitTypeName": "HellionTank" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11400, + "unitTagIndex": 7, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11401, + "unitTagIndex": 500, + "unitTagRecycle": 4, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11401, + "unitTagIndex": 502, + "unitTagRecycle": 3, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11401, + "unitTagIndex": 435, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11401, + "unitTagIndex": 435, + "unitTagRecycle": 2, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11402, + "unitTagIndex": 503, + "unitTagRecycle": 1, + "unitTypeName": "Queen", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11405, + "unitTagIndex": 435, + "unitTagRecycle": 3, + "unitTypeName": "Drone", + "upkeepPlayerId": 1, + "x": 80, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11405, + "unitTagIndex": 298, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11405, + "unitTagIndex": 298, + "unitTagRecycle": 2, + "x": 80, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11407, + "unitTagIndex": 236, + "unitTagRecycle": 13, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11407, + "unitTagIndex": 344, + "unitTagRecycle": 10, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11408, + "unitTagIndex": 446, + "unitTagRecycle": 4, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11408, + "unitTagIndex": 447, + "unitTagRecycle": 4, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11409, + "unitTagIndex": 499, + "unitTagRecycle": 7, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11409, + "unitTagIndex": 501, + "unitTagRecycle": 4, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11446, + "unitTagIndex": 89, + "unitTagRecycle": 1, + "x": 14, + "y": 108 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11487, + "unitTagIndex": 89, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11494, + "unitTagIndex": 298, + "unitTagRecycle": 3, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11496, + "unitTagIndex": 504, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11497, + "unitTagIndex": 505, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 30 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11499, + "unitTagIndex": 506, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 80, + "y": 104 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11518, + "unitTagIndex": 507, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 11520, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 491520, + "scoreValueFoodUsed": 442368, + "scoreValueMineralsCollectionRate": 1440, + "scoreValueMineralsCurrent": 312, + "scoreValueMineralsFriendlyFireArmy": 300, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1550, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1818, + "scoreValueMineralsLostEconomy": 550, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2325, + "scoreValueMineralsUsedCurrentArmy": 2400, + "scoreValueMineralsUsedCurrentEconomy": 6150, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 350, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 688, + "scoreValueVespeneCurrent": 312, + "scoreValueVespeneFriendlyFireArmy": 150, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1018, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 675, + "scoreValueVespeneUsedCurrentArmy": 675, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 62 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 11520, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 544768, + "scoreValueFoodUsed": 544768, + "scoreValueMineralsCollectionRate": 1880, + "scoreValueMineralsCurrent": 140, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1800, + "scoreValueMineralsKilledEconomy": 550, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1550, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2925, + "scoreValueMineralsUsedCurrentArmy": 2925, + "scoreValueMineralsUsedCurrentEconomy": 6025, + "scoreValueMineralsUsedCurrentTechnology": 2250, + "scoreValueMineralsUsedInProgressArmy": 550, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 150, + "scoreValueVespeneCollectionRate": 480, + "scoreValueVespeneCurrent": 266, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1000, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 850, + "scoreValueVespeneUsedCurrentArmy": 850, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 575, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 100, + "scoreValueWorkersActiveCount": 60 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11529, + "unitTagIndex": 508, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 22, + "y": 28 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11529, + "unitTagIndex": 509, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 71, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11530, + "unitTagIndex": 510, + "unitTagRecycle": 1, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 54, + "y": 32 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11553, + "unitTagIndex": 511, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 11623, + "unitTagIndex": 340, + "unitTagRecycle": 16 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11624, + "unitTagIndex": 107, + "unitTagRecycle": 2, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11631, + "unitTagIndex": 285, + "unitTagRecycle": 8, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11631, + "unitTagIndex": 500, + "unitTagRecycle": 4, + "unitTypeName": "BanelingCocoon" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11657, + "unitTagIndex": 512, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11658, + "unitTagIndex": 513, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 30 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 11680, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 491520, + "scoreValueFoodUsed": 442368, + "scoreValueMineralsCollectionRate": 1460, + "scoreValueMineralsCurrent": 192, + "scoreValueMineralsFriendlyFireArmy": 300, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1550, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1818, + "scoreValueMineralsLostEconomy": 550, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2250, + "scoreValueMineralsUsedCurrentArmy": 2400, + "scoreValueMineralsUsedCurrentEconomy": 6150, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 425, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 688, + "scoreValueVespeneCurrent": 353, + "scoreValueVespeneFriendlyFireArmy": 150, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1018, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 675, + "scoreValueVespeneUsedCurrentArmy": 675, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 75, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 62 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 11680, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 544768, + "scoreValueFoodUsed": 544768, + "scoreValueMineralsCollectionRate": 1840, + "scoreValueMineralsCurrent": 17, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1800, + "scoreValueMineralsKilledEconomy": 550, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1550, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 3025, + "scoreValueMineralsUsedCurrentArmy": 3025, + "scoreValueMineralsUsedCurrentEconomy": 6175, + "scoreValueMineralsUsedCurrentTechnology": 2400, + "scoreValueMineralsUsedInProgressArmy": 450, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 528, + "scoreValueVespeneCurrent": 340, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1000, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 850, + "scoreValueVespeneUsedCurrentArmy": 850, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 675, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 63 + } + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 11683, + "unitTagIndex": 514, + "unitTagRecycle": 1, + "unitTypeName": "SupplyDepot", + "upkeepPlayerId": 2, + "x": 82, + "y": 36 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11687, + "unitTagIndex": 515, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 81, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11691, + "unitTagIndex": 517, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 80, + "y": 104 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 11694, + "unitTagIndex": 519, + "unitTagRecycle": 1, + "unitTypeName": "SupplyDepot", + "upkeepPlayerId": 2, + "x": 80, + "y": 36 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11695, + "unitTagIndex": 520, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 79, + "y": 104 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11701, + "unitTagIndex": 522, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 33 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11705, + "unitTagIndex": 523, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11708, + "unitTagIndex": 524, + "unitTagRecycle": 1, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 33 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11727, + "unitTagIndex": 521, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11729, + "unitTagIndex": 518, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 52, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11733, + "unitTagIndex": 525, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11734, + "unitTagIndex": 527, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11737, + "unitTagIndex": 528, + "unitTagRecycle": 1, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 50, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11784, + "unitTagIndex": 526, + "unitTagRecycle": 2, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11784, + "unitTagIndex": 516, + "unitTagRecycle": 3, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11784, + "unitTagIndex": 7, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11784, + "unitTagIndex": 7, + "unitTagRecycle": 2, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11791, + "unitTagIndex": 7, + "unitTagRecycle": 3, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11791, + "unitTagIndex": 529, + "unitTagRecycle": 2, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 51, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11791, + "unitTagIndex": 344, + "unitTagRecycle": 10, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11791, + "unitTagIndex": 344, + "unitTagRecycle": 10, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11791, + "unitTagIndex": 530, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11791, + "unitTagIndex": 531, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11791, + "unitTagIndex": 236, + "unitTagRecycle": 13, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11791, + "unitTagIndex": 236, + "unitTagRecycle": 13, + "x": 75, + "y": 105 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11792, + "unitTagIndex": 532, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11792, + "unitTagIndex": 533, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 21, + "y": 106 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11792, + "unitTagIndex": 447, + "unitTagRecycle": 4, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11792, + "unitTagIndex": 447, + "unitTagRecycle": 4, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11792, + "unitTagIndex": 534, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 73, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11792, + "unitTagIndex": 535, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 73, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11792, + "unitTagIndex": 446, + "unitTagRecycle": 4, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11792, + "unitTagIndex": 446, + "unitTagRecycle": 4, + "x": 73, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11793, + "unitTagIndex": 236, + "unitTagRecycle": 14, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11793, + "unitTagIndex": 344, + "unitTagRecycle": 11, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 80, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11793, + "unitTagIndex": 536, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 81, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11793, + "unitTagIndex": 501, + "unitTagRecycle": 4, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11793, + "unitTagIndex": 501, + "unitTagRecycle": 4, + "x": 80, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11793, + "unitTagIndex": 537, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 72, + "y": 105 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11793, + "unitTagIndex": 538, + "unitTagRecycle": 1, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 72, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11793, + "unitTagIndex": 499, + "unitTagRecycle": 7, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11793, + "unitTagIndex": 499, + "unitTagRecycle": 7, + "x": 72, + "y": 105 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11801, + "unitTagIndex": 89, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11805, + "unitTagIndex": 236, + "unitTagRecycle": 14, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11807, + "unitTagIndex": 298, + "unitTagRecycle": 3, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11810, + "unitTagIndex": 506, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 494, + "killerUnitTagRecycle": 2, + "loop": 11824, + "unitTagIndex": 255, + "unitTagRecycle": 7, + "x": 59, + "y": 64 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 11840, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 491520, + "scoreValueFoodUsed": 440320, + "scoreValueMineralsCollectionRate": 1600, + "scoreValueMineralsCurrent": 72, + "scoreValueMineralsFriendlyFireArmy": 300, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1550, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1843, + "scoreValueMineralsLostEconomy": 550, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2575, + "scoreValueMineralsUsedCurrentArmy": 2725, + "scoreValueMineralsUsedCurrentEconomy": 6150, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 75, + "scoreValueMineralsUsedInProgressEconomy": 400, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 688, + "scoreValueVespeneCurrent": 469, + "scoreValueVespeneFriendlyFireArmy": 150, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1018, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 675, + "scoreValueVespeneUsedCurrentArmy": 675, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 75, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 62 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 11840, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 577536, + "scoreValueFoodUsed": 577536, + "scoreValueMineralsCollectionRate": 1840, + "scoreValueMineralsCurrent": 117, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1825, + "scoreValueMineralsKilledEconomy": 550, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1550, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 3175, + "scoreValueMineralsUsedCurrentArmy": 3175, + "scoreValueMineralsUsedCurrentEconomy": 6175, + "scoreValueMineralsUsedCurrentTechnology": 2400, + "scoreValueMineralsUsedInProgressArmy": 700, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 576, + "scoreValueVespeneCurrent": 421, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1000, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 850, + "scoreValueVespeneUsedCurrentArmy": 850, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 675, + "scoreValueVespeneUsedInProgressArmy": 325, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 63 + } + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitInit", + "id": 6, + "loop": 11847, + "unitTagIndex": 255, + "unitTagRecycle": 8, + "unitTypeName": "Hatchery", + "upkeepPlayerId": 1, + "x": 102, + "y": 112 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11865, + "unitTagIndex": 511, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11870, + "unitTagIndex": 515, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 458, + "killerUnitTagRecycle": 5, + "loop": 11911, + "unitTagIndex": 409, + "unitTagRecycle": 4, + "x": 59, + "y": 77 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 494, + "killerUnitTagRecycle": 2, + "loop": 11912, + "unitTagIndex": 387, + "unitTagRecycle": 3, + "x": 59, + "y": 77 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11918, + "unitTagIndex": 387, + "unitTagRecycle": 4, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 80, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11944, + "unitTagIndex": 409, + "unitTagRecycle": 5, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 70, + "y": 93 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11944, + "unitTagIndex": 107, + "unitTagRecycle": 2, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11944, + "unitTagIndex": 107, + "unitTagRecycle": 2, + "x": 70, + "y": 93 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11951, + "unitTagIndex": 107, + "unitTagRecycle": 3, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 69, + "y": 93 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11951, + "unitTagIndex": 500, + "unitTagRecycle": 4, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11951, + "unitTagIndex": 500, + "unitTagRecycle": 4, + "x": 69, + "y": 93 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11951, + "unitTagIndex": 501, + "unitTagRecycle": 5, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 70, + "y": 93 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11951, + "unitTagIndex": 285, + "unitTagRecycle": 8, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 11951, + "unitTagIndex": 285, + "unitTagRecycle": 8, + "x": 70, + "y": 93 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11961, + "unitTagIndex": 336, + "unitTagRecycle": 5, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11967, + "unitTagIndex": 455, + "unitTagRecycle": 3, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11967, + "unitTagIndex": 529, + "unitTagRecycle": 2, + "unitTypeName": "BanelingCocoon" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11969, + "unitTagIndex": 500, + "unitTagRecycle": 5, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11969, + "unitTagIndex": 532, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11969, + "unitTagIndex": 533, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 11970, + "unitTagIndex": 534, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11973, + "unitTagIndex": 499, + "unitTagRecycle": 8, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11977, + "unitTagIndex": 447, + "unitTagRecycle": 5, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11982, + "unitTagIndex": 540, + "unitTagRecycle": 1, + "unitTypeName": "Liberator", + "upkeepPlayerId": 2, + "x": 27, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 11985, + "unitTagIndex": 541, + "unitTagRecycle": 1, + "unitTypeName": "Liberator", + "upkeepPlayerId": 2, + "x": 27, + "y": 25 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12000, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 491520, + "scoreValueFoodUsed": 440320, + "scoreValueMineralsCollectionRate": 1500, + "scoreValueMineralsCurrent": 57, + "scoreValueMineralsFriendlyFireArmy": 300, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1550, + "scoreValueMineralsKilledEconomy": 0, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1943, + "scoreValueMineralsLostEconomy": 550, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2475, + "scoreValueMineralsUsedCurrentArmy": 2700, + "scoreValueMineralsUsedCurrentEconomy": 6100, + "scoreValueMineralsUsedCurrentTechnology": 1300, + "scoreValueMineralsUsedInProgressArmy": 250, + "scoreValueMineralsUsedInProgressEconomy": 750, + "scoreValueMineralsUsedInProgressTechnology": 200, + "scoreValueVespeneCollectionRate": 688, + "scoreValueVespeneCurrent": 439, + "scoreValueVespeneFriendlyFireArmy": 150, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1068, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 700, + "scoreValueVespeneUsedCurrentArmy": 700, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 150, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 61 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12000, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 577536, + "scoreValueFoodUsed": 577536, + "scoreValueMineralsCollectionRate": 1880, + "scoreValueMineralsCurrent": 177, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1925, + "scoreValueMineralsKilledEconomy": 550, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1550, + "scoreValueMineralsLostEconomy": 0, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 3475, + "scoreValueMineralsUsedCurrentArmy": 3475, + "scoreValueMineralsUsedCurrentEconomy": 6175, + "scoreValueMineralsUsedCurrentTechnology": 2400, + "scoreValueMineralsUsedInProgressArmy": 400, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 624, + "scoreValueVespeneCurrent": 496, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1050, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 1150, + "scoreValueVespeneUsedCurrentArmy": 1150, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 675, + "scoreValueVespeneUsedInProgressArmy": 25, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 63 + } + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 440, + "id": 8, + "items": [ + 0, + 61, + 74, + 1, + 61, + 76, + 10, + 52, + 66, + 7, + 60, + 76, + 20, + 61, + 75, + 8, + 62, + 76, + 2, + 60, + 76, + 6, + 62, + 75, + 3, + 61, + 75 + ], + "loop": 12000 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12014, + "unitTagIndex": 240, + "unitTagRecycle": 4, + "x": 59, + "y": 63 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12014, + "unitTagIndex": 422, + "unitTagRecycle": 1, + "x": 59, + "y": 64 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12014, + "unitTagIndex": 282, + "unitTagRecycle": 5, + "x": 59, + "y": 64 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12014, + "unitTagIndex": 480, + "unitTagRecycle": 1, + "x": 60, + "y": 64 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12014, + "unitTagIndex": 393, + "unitTagRecycle": 2, + "x": 60, + "y": 65 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12014, + "unitTagIndex": 323, + "unitTagRecycle": 2, + "x": 59, + "y": 65 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12014, + "unitTagIndex": 308, + "unitTagRecycle": 4, + "x": 60, + "y": 64 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12014, + "unitTagIndex": 479, + "unitTagRecycle": 8, + "x": 60, + "y": 65 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12033, + "unitTagIndex": 479, + "unitTagRecycle": 10, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12069, + "unitTagIndex": 282, + "unitTagRecycle": 7, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 488, + "killerUnitTagRecycle": 4, + "loop": 12072, + "unitTagIndex": 338, + "unitTagRecycle": 7, + "x": 64, + "y": 85 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12073, + "unitTagIndex": 308, + "unitTagRecycle": 5, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12077, + "unitTagIndex": 338, + "unitTagRecycle": 8, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 73, + "y": 104 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 12077, + "unitTagIndex": 203, + "unitTagRecycle": 8 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12078, + "unitTagIndex": 445, + "unitTagRecycle": 2, + "x": 69, + "y": 114 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 325, + "killerUnitTagRecycle": 1, + "loop": 12109, + "unitTagIndex": 400, + "unitTagRecycle": 4, + "x": 69, + "y": 27 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 234, + "killerUnitTagRecycle": 2, + "loop": 12114, + "unitTagIndex": 414, + "unitTagRecycle": 21, + "x": 70, + "y": 31 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12154, + "unitTagIndex": 540, + "unitTagRecycle": 1, + "unitTypeName": "LiberatorAG" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12158, + "unitTagIndex": 393, + "unitTagRecycle": 6, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 33 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12158, + "unitTagIndex": 323, + "unitTagRecycle": 7, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 318, + "killerUnitTagRecycle": 4, + "loop": 12158, + "unitTagIndex": 290, + "unitTagRecycle": 2, + "x": 70, + "y": 31 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12158, + "unitTagIndex": 400, + "unitTagRecycle": 7, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 30 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12159, + "unitTagIndex": 414, + "unitTagRecycle": 22, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12160, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 491520, + "scoreValueFoodUsed": 436224, + "scoreValueMineralsCollectionRate": 1580, + "scoreValueMineralsCurrent": 332, + "scoreValueMineralsFriendlyFireArmy": 400, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1850, + "scoreValueMineralsKilledEconomy": 50, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1943, + "scoreValueMineralsLostEconomy": 550, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2375, + "scoreValueMineralsUsedCurrentArmy": 2600, + "scoreValueMineralsUsedCurrentEconomy": 6100, + "scoreValueMineralsUsedCurrentTechnology": 1500, + "scoreValueMineralsUsedInProgressArmy": 250, + "scoreValueMineralsUsedInProgressEconomy": 750, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 704, + "scoreValueVespeneCurrent": 555, + "scoreValueVespeneFriendlyFireArmy": 200, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1068, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 650, + "scoreValueVespeneUsedCurrentArmy": 650, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 150, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 61 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12160, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 577536, + "scoreValueFoodUsed": 577536, + "scoreValueMineralsCollectionRate": 1700, + "scoreValueMineralsCurrent": 437, + "scoreValueMineralsFriendlyFireArmy": 0, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1925, + "scoreValueMineralsKilledEconomy": 550, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1850, + "scoreValueMineralsLostEconomy": 50, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 3375, + "scoreValueMineralsUsedCurrentArmy": 3375, + "scoreValueMineralsUsedCurrentEconomy": 6125, + "scoreValueMineralsUsedCurrentTechnology": 2400, + "scoreValueMineralsUsedInProgressArmy": 550, + "scoreValueMineralsUsedInProgressEconomy": 200, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 576, + "scoreValueVespeneCurrent": 584, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1050, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 1150, + "scoreValueVespeneUsedCurrentArmy": 1150, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 675, + "scoreValueVespeneUsedInProgressArmy": 25, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 62 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12160, + "unitTagIndex": 541, + "unitTagRecycle": 1, + "unitTypeName": "LiberatorAG" + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 12163, + "unitTagIndex": 514, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitDone", + "id": 7, + "loop": 12174, + "unitTagIndex": 519, + "unitTagRecycle": 1 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12186, + "unitTagIndex": 7, + "unitTagRecycle": 3, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12192, + "unitTagIndex": 344, + "unitTagRecycle": 11, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12192, + "unitTagIndex": 364, + "unitTagRecycle": 15, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12193, + "unitTagIndex": 502, + "unitTagRecycle": 3, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12193, + "unitTagIndex": 516, + "unitTagRecycle": 3, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12195, + "unitTagIndex": 526, + "unitTagRecycle": 2, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12195, + "unitTagIndex": 530, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12196, + "unitTagIndex": 531, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12197, + "unitTagIndex": 535, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12197, + "unitTagIndex": 536, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12199, + "unitTagIndex": 537, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12199, + "unitTagIndex": 538, + "unitTagRecycle": 1, + "unitTypeName": "BanelingCocoon" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12201, + "unitTagIndex": 445, + "unitTagRecycle": 3, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12201, + "unitTagIndex": 89, + "unitTagRecycle": 2, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12201, + "unitTagIndex": 89, + "unitTagRecycle": 2, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12205, + "unitTagIndex": 422, + "unitTagRecycle": 5, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 74, + "y": 105 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12205, + "unitTagIndex": 236, + "unitTagRecycle": 14, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12205, + "unitTagIndex": 236, + "unitTagRecycle": 14, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 522, + "killerUnitTagRecycle": 1, + "loop": 12207, + "unitTagIndex": 493, + "unitTagRecycle": 5, + "x": 56, + "y": 37 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12207, + "unitTagIndex": 236, + "unitTagRecycle": 15, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12207, + "unitTagIndex": 298, + "unitTagRecycle": 3, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12207, + "unitTagIndex": 298, + "unitTagRecycle": 3, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12210, + "unitTagIndex": 493, + "unitTagRecycle": 6, + "unitTypeName": "Overlord", + "upkeepPlayerId": 1, + "x": 80, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12210, + "unitTagIndex": 506, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12210, + "unitTagIndex": 506, + "unitTagRecycle": 1, + "x": 80, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 263, + "killerUnitTagRecycle": 4, + "loop": 12212, + "unitTagIndex": 251, + "unitTagRecycle": 5, + "x": 58, + "y": 36 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 263, + "killerUnitTagRecycle": 4, + "loop": 12212, + "unitTagIndex": 467, + "unitTagRecycle": 12, + "x": 57, + "y": 36 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 263, + "killerUnitTagRecycle": 4, + "loop": 12212, + "unitTagIndex": 339, + "unitTagRecycle": 5, + "x": 58, + "y": 37 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 263, + "killerUnitTagRecycle": 4, + "loop": 12212, + "unitTagIndex": 304, + "unitTagRecycle": 5, + "x": 57, + "y": 36 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 263, + "killerUnitTagRecycle": 4, + "loop": 12212, + "unitTagIndex": 492, + "unitTagRecycle": 3, + "x": 57, + "y": 37 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 263, + "killerUnitTagRecycle": 4, + "loop": 12212, + "unitTagIndex": 522, + "unitTagRecycle": 1, + "x": 56, + "y": 36 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 263, + "killerUnitTagRecycle": 4, + "loop": 12212, + "unitTagIndex": 485, + "unitTagRecycle": 6, + "x": 56, + "y": 37 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12214, + "unitTagIndex": 2, + "unitTagRecycle": 1, + "x": 14, + "y": 23 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12224, + "unitTagIndex": 193, + "unitTagRecycle": 13, + "x": 63, + "y": 42 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12225, + "unitTagIndex": 258, + "unitTagRecycle": 9, + "x": 62, + "y": 42 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12225, + "unitTagIndex": 224, + "unitTagRecycle": 1, + "x": 63, + "y": 42 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12225, + "unitTagIndex": 249, + "unitTagRecycle": 3, + "x": 63, + "y": 40 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 540, + "killerUnitTagRecycle": 1, + "loop": 12225, + "unitTagIndex": 286, + "unitTagRecycle": 7, + "x": 56, + "y": 36 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 523, + "killerUnitTagRecycle": 1, + "loop": 12226, + "unitTagIndex": 405, + "unitTagRecycle": 3, + "x": 55, + "y": 37 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 541, + "killerUnitTagRecycle": 1, + "loop": 12227, + "unitTagIndex": 357, + "unitTagRecycle": 4, + "x": 55, + "y": 38 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 318, + "killerUnitTagRecycle": 4, + "loop": 12229, + "unitTagIndex": 509, + "unitTagRecycle": 1, + "x": 70, + "y": 32 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12238, + "unitTagIndex": 357, + "unitTagRecycle": 5, + "unitTypeName": "Marauder", + "upkeepPlayerId": 2, + "x": 36, + "y": 31 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12239, + "unitTagIndex": 506, + "unitTagRecycle": 4, + "unitTypeName": "Hellion", + "upkeepPlayerId": 2, + "x": 27, + "y": 24 + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 90, + "id": 8, + "items": [ + 0, + 61, + 38, + 14, + 60, + 93, + 104, + 61, + 35, + 10, + 64, + 37, + 45, + 58, + 31, + 1, + 57, + 99, + 8, + 75, + 82, + 1, + 59, + 36, + 1, + 58, + 41, + 4, + 61, + 39, + 16, + 62, + 37, + 7, + 61, + 37, + 6, + 62, + 35, + 10, + 61, + 94, + 1, + 70, + 31, + 23, + 62, + 96, + 20, + 62, + 40, + 18, + 80, + 37, + 6, + 70, + 29, + 1, + 57, + 42, + 17, + 61, + 36, + 15, + 68, + 80, + 1, + 65, + 98, + 8, + 63, + 95, + 4, + 62, + 94, + 5, + 62, + 36, + 3, + 56, + 40, + 2, + 69, + 97, + 1, + 62, + 38, + 1, + 81, + 36, + 11, + 61, + 38, + 3, + 57, + 99, + 1, + 70, + 97, + 2, + 64, + 37, + 9, + 70, + 29, + 1, + 61, + 94, + 3, + 62, + 39, + 3, + 59, + 36, + 2, + 68, + 98, + 5, + 61, + 36, + 3, + 68, + 98, + 1, + 52, + 38, + 1, + 72, + 94, + 7, + 57, + 41, + 8, + 71, + 103, + 1, + 63, + 96, + 1, + 59, + 93, + 2, + 62, + 95, + 3, + 63, + 37, + 2, + 54, + 36, + 1, + 54, + 36, + 10, + 54, + 36, + 1, + 54, + 36, + 16, + 55, + 35, + 1, + 54, + 33 + ], + "loop": 12240 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 513, + "killerUnitTagRecycle": 1, + "loop": 12240, + "unitTagIndex": 487, + "unitTagRecycle": 5, + "x": 52, + "y": 38 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12245, + "unitTagIndex": 419, + "unitTagRecycle": 1, + "unitTypeName": "LiberatorAG" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12249, + "unitTagIndex": 467, + "unitTagRecycle": 15, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12249, + "unitTagIndex": 405, + "unitTagRecycle": 6, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12249, + "unitTagIndex": 511, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12249, + "unitTagIndex": 511, + "unitTagRecycle": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12254, + "unitTagIndex": 286, + "unitTagRecycle": 8, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 81, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12254, + "unitTagIndex": 249, + "unitTagRecycle": 4, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 81, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12254, + "unitTagIndex": 515, + "unitTagRecycle": 1, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12254, + "unitTagIndex": 515, + "unitTagRecycle": 1, + "x": 81, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 540, + "killerUnitTagRecycle": 1, + "loop": 12254, + "unitTagIndex": 477, + "unitTagRecycle": 12, + "x": 51, + "y": 39 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 541, + "killerUnitTagRecycle": 1, + "loop": 12254, + "unitTagIndex": 476, + "unitTagRecycle": 6, + "x": 56, + "y": 37 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 524, + "killerUnitTagRecycle": 1, + "loop": 12273, + "unitTagIndex": 356, + "unitTagRecycle": 11, + "x": 54, + "y": 38 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 341, + "killerUnitTagRecycle": 7, + "loop": 12278, + "unitTagIndex": 264, + "unitTagRecycle": 2, + "x": 57, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 540, + "killerUnitTagRecycle": 1, + "loop": 12278, + "unitTagIndex": 403, + "unitTagRecycle": 13, + "x": 55, + "y": 38 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12281, + "unitTagIndex": 264, + "unitTagRecycle": 3, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 49, + "y": 97 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12281, + "unitTagIndex": 336, + "unitTagRecycle": 5, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12281, + "unitTagIndex": 336, + "unitTagRecycle": 5, + "x": 49, + "y": 97 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 486, + "killerUnitTagRecycle": 6, + "loop": 12283, + "unitTagIndex": 503, + "unitTagRecycle": 1, + "x": 71, + "y": 103 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12287, + "unitTagIndex": 2, + "unitTagRecycle": 8, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 46, + "y": 97 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12287, + "unitTagIndex": 529, + "unitTagRecycle": 2, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12287, + "unitTagIndex": 529, + "unitTagRecycle": 2, + "x": 46, + "y": 97 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12287, + "unitTagIndex": 503, + "unitTagRecycle": 2, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 45, + "y": 96 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12287, + "unitTagIndex": 455, + "unitTagRecycle": 3, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12287, + "unitTagIndex": 455, + "unitTagRecycle": 3, + "x": 45, + "y": 96 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 481, + "killerUnitTagRecycle": 1, + "loop": 12288, + "unitTagIndex": 467, + "unitTagRecycle": 15, + "x": 70, + "y": 99 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12289, + "unitTagIndex": 529, + "unitTagRecycle": 3, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 46, + "y": 96 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12289, + "unitTagIndex": 532, + "unitTagRecycle": 1, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12289, + "unitTagIndex": 532, + "unitTagRecycle": 1, + "x": 46, + "y": 96 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12289, + "unitTagIndex": 455, + "unitTagRecycle": 4, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 44, + "y": 97 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12289, + "unitTagIndex": 533, + "unitTagRecycle": 1, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12289, + "unitTagIndex": 533, + "unitTagRecycle": 1, + "x": 44, + "y": 97 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12290, + "unitTagIndex": 509, + "unitTagRecycle": 7, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 44, + "y": 96 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12290, + "unitTagIndex": 534, + "unitTagRecycle": 1, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12290, + "unitTagIndex": 534, + "unitTagRecycle": 1, + "x": 44, + "y": 96 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 488, + "killerUnitTagRecycle": 4, + "loop": 12290, + "unitTagIndex": 405, + "unitTagRecycle": 6, + "x": 68, + "y": 98 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12291, + "unitTagIndex": 438, + "unitTagRecycle": 15, + "x": 51, + "y": 39 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12291, + "unitTagIndex": 273, + "unitTagRecycle": 12, + "x": 53, + "y": 39 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 454, + "killerUnitTagRecycle": 7, + "loop": 12293, + "unitTagIndex": 414, + "unitTagRecycle": 22, + "x": 50, + "y": 38 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 475, + "killerUnitTagRecycle": 11, + "loop": 12297, + "unitTagIndex": 249, + "unitTagRecycle": 4, + "x": 68, + "y": 98 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 512, + "killerUnitTagRecycle": 1, + "loop": 12298, + "unitTagIndex": 454, + "unitTagRecycle": 7, + "x": 50, + "y": 37 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 323, + "killerUnitTagRecycle": 7, + "loop": 12303, + "unitTagIndex": 274, + "unitTagRecycle": 18, + "x": 47, + "y": 39 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 482, + "killerUnitTagRecycle": 1, + "loop": 12303, + "unitTagIndex": 286, + "unitTagRecycle": 8, + "x": 68, + "y": 98 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 513, + "killerUnitTagRecycle": 1, + "loop": 12304, + "unitTagIndex": 483, + "unitTagRecycle": 14, + "x": 52, + "y": 37 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 486, + "killerUnitTagRecycle": 6, + "loop": 12312, + "unitTagIndex": 425, + "unitTagRecycle": 2, + "x": 69, + "y": 103 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 323, + "killerUnitTagRecycle": 7, + "loop": 12313, + "unitTagIndex": 386, + "unitTagRecycle": 7, + "x": 46, + "y": 38 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 541, + "killerUnitTagRecycle": 1, + "loop": 12315, + "unitTagIndex": 90, + "unitTagRecycle": 2, + "x": 54, + "y": 38 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12320, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 622592, + "scoreValueFoodUsed": 360448, + "scoreValueMineralsCollectionRate": 1640, + "scoreValueMineralsCurrent": 307, + "scoreValueMineralsFriendlyFireArmy": 550, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 1900, + "scoreValueMineralsKilledEconomy": 250, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 2843, + "scoreValueMineralsLostEconomy": 600, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1425, + "scoreValueMineralsUsedCurrentArmy": 1800, + "scoreValueMineralsUsedCurrentEconomy": 6450, + "scoreValueMineralsUsedCurrentTechnology": 1500, + "scoreValueMineralsUsedInProgressArmy": 300, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 720, + "scoreValueVespeneCurrent": 375, + "scoreValueVespeneFriendlyFireArmy": 275, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 200, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1068, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 725, + "scoreValueVespeneUsedCurrentArmy": 725, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 60 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12320, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 643072, + "scoreValueFoodUsed": 589824, + "scoreValueMineralsCollectionRate": 1160, + "scoreValueMineralsCurrent": 127, + "scoreValueMineralsFriendlyFireArmy": 50, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 2825, + "scoreValueMineralsKilledEconomy": 600, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 1900, + "scoreValueMineralsLostEconomy": 250, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 3475, + "scoreValueMineralsUsedCurrentArmy": 3475, + "scoreValueMineralsUsedCurrentEconomy": 6125, + "scoreValueMineralsUsedCurrentTechnology": 2400, + "scoreValueMineralsUsedInProgressArmy": 750, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 512, + "scoreValueVespeneCurrent": 593, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1050, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 200, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 1175, + "scoreValueVespeneUsedCurrentArmy": 1175, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 675, + "scoreValueVespeneUsedInProgressArmy": 75, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 58 + } + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 513, + "killerUnitTagRecycle": 1, + "loop": 12324, + "unitTagIndex": 473, + "unitTagRecycle": 2, + "x": 52, + "y": 36 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 505, + "killerUnitTagRecycle": 1, + "loop": 12325, + "unitTagIndex": 297, + "unitTagRecycle": 9, + "x": 56, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12329, + "unitTagIndex": 282, + "unitTagRecycle": 7, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 475, + "killerUnitTagRecycle": 11, + "loop": 12332, + "unitTagIndex": 4, + "unitTagRecycle": 2, + "x": 69, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 393, + "killerUnitTagRecycle": 6, + "loop": 12334, + "unitTagIndex": 278, + "unitTagRecycle": 9, + "x": 46, + "y": 38 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12334, + "unitTagIndex": 308, + "unitTagRecycle": 5, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12335, + "unitTagIndex": 338, + "unitTagRecycle": 8, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12335, + "unitTagIndex": 387, + "unitTagRecycle": 4, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12337, + "unitTagIndex": 447, + "unitTagRecycle": 5, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12337, + "unitTagIndex": 479, + "unitTagRecycle": 10, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 419, + "killerUnitTagRecycle": 1, + "loop": 12341, + "unitTagIndex": 329, + "unitTagRecycle": 2, + "x": 69, + "y": 105 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 323, + "killerUnitTagRecycle": 7, + "loop": 12344, + "unitTagIndex": 489, + "unitTagRecycle": 5, + "x": 46, + "y": 38 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 513, + "killerUnitTagRecycle": 1, + "loop": 12345, + "unitTagIndex": 442, + "unitTagRecycle": 4, + "x": 52, + "y": 40 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 507, + "killerUnitTagRecycle": 1, + "loop": 12346, + "unitTagIndex": 457, + "unitTagRecycle": 2, + "x": 55, + "y": 101 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 419, + "killerUnitTagRecycle": 1, + "loop": 12366, + "unitTagIndex": 496, + "unitTagRecycle": 2, + "x": 69, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 367, + "killerUnitTagRecycle": 18, + "loop": 12369, + "unitTagIndex": 107, + "unitTagRecycle": 3, + "x": 55, + "y": 97 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12372, + "unitTagIndex": 356, + "unitTagRecycle": 19, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 80, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12376, + "unitTagIndex": 442, + "unitTagRecycle": 7, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 81, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12380, + "unitTagIndex": 107, + "unitTagRecycle": 5, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 79, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12385, + "unitTagIndex": 529, + "unitTagRecycle": 3, + "x": 57, + "y": 97 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12385, + "unitTagIndex": 505, + "unitTagRecycle": 1, + "x": 58, + "y": 98 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12390, + "unitTagIndex": 509, + "unitTagRecycle": 7, + "x": 57, + "y": 98 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12390, + "unitTagIndex": 470, + "unitTagRecycle": 6, + "x": 58, + "y": 98 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12390, + "unitTagIndex": 507, + "unitTagRecycle": 1, + "x": 58, + "y": 97 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12390, + "unitTagIndex": 317, + "unitTagRecycle": 8, + "x": 58, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12390, + "unitTagIndex": 367, + "unitTagRecycle": 18, + "x": 59, + "y": 98 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12390, + "unitTagIndex": 104, + "unitTagRecycle": 2, + "x": 58, + "y": 97 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12390, + "unitTagIndex": 449, + "unitTagRecycle": 3, + "x": 59, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12390, + "unitTagIndex": 431, + "unitTagRecycle": 4, + "x": 59, + "y": 98 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 397, + "killerUnitTagRecycle": 4, + "loop": 12404, + "unitTagIndex": 264, + "unitTagRecycle": 3, + "x": 60, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12404, + "unitTagIndex": 341, + "unitTagRecycle": 7, + "x": 59, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 504, + "killerUnitTagRecycle": 1, + "loop": 12407, + "unitTagIndex": 455, + "unitTagRecycle": 4, + "x": 59, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12407, + "unitTagIndex": 453, + "unitTagRecycle": 4, + "x": 60, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12407, + "unitTagIndex": 504, + "unitTagRecycle": 1, + "x": 60, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12407, + "unitTagIndex": 421, + "unitTagRecycle": 11, + "x": 61, + "y": 98 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12415, + "unitTagIndex": 470, + "unitTagRecycle": 9, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12415, + "unitTagIndex": 496, + "unitTagRecycle": 6, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 33 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12415, + "unitTagIndex": 483, + "unitTagRecycle": 18, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 30 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12415, + "unitTagIndex": 104, + "unitTagRecycle": 5, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 427, + "killerUnitTagRecycle": 8, + "loop": 12420, + "unitTagIndex": 503, + "unitTagRecycle": 2, + "x": 62, + "y": 98 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12420, + "unitTagIndex": 257, + "unitTagRecycle": 5, + "x": 62, + "y": 98 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 368, + "killerUnitTagRecycle": 5, + "loop": 12429, + "unitTagIndex": 409, + "unitTagRecycle": 5, + "x": 62, + "y": 101 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12429, + "unitTagIndex": 481, + "unitTagRecycle": 1, + "x": 62, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12435, + "unitTagIndex": 2, + "unitTagRecycle": 8, + "x": 63, + "y": 101 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12435, + "unitTagIndex": 368, + "unitTagRecycle": 5, + "x": 63, + "y": 101 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12435, + "unitTagIndex": 397, + "unitTagRecycle": 4, + "x": 63, + "y": 101 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 418, + "killerUnitTagRecycle": 1, + "loop": 12445, + "unitTagIndex": 272, + "unitTagRecycle": 1, + "x": 81, + "y": 83 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 360, + "killerUnitTagRecycle": 3, + "loop": 12457, + "unitTagIndex": 427, + "unitTagRecycle": 8, + "x": 61, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12468, + "unitTagIndex": 419, + "unitTagRecycle": 1, + "unitTypeName": "Liberator" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12480, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 524288, + "scoreValueFoodUsed": 348160, + "scoreValueMineralsCollectionRate": 1340, + "scoreValueMineralsCurrent": 207, + "scoreValueMineralsFriendlyFireArmy": 700, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 2800, + "scoreValueMineralsKilledEconomy": 250, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 3193, + "scoreValueMineralsLostEconomy": 1050, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 925, + "scoreValueMineralsUsedCurrentArmy": 1300, + "scoreValueMineralsUsedCurrentEconomy": 6000, + "scoreValueMineralsUsedCurrentTechnology": 1500, + "scoreValueMineralsUsedInProgressArmy": 600, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 656, + "scoreValueVespeneCurrent": 475, + "scoreValueVespeneFriendlyFireArmy": 350, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 225, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1193, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 525, + "scoreValueVespeneUsedCurrentArmy": 525, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 300, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 57 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12480, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 643072, + "scoreValueFoodUsed": 544768, + "scoreValueMineralsCollectionRate": 1100, + "scoreValueMineralsCurrent": 67, + "scoreValueMineralsFriendlyFireArmy": 50, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 3175, + "scoreValueMineralsKilledEconomy": 1050, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 2800, + "scoreValueMineralsLostEconomy": 250, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2775, + "scoreValueMineralsUsedCurrentArmy": 2775, + "scoreValueMineralsUsedCurrentEconomy": 6125, + "scoreValueMineralsUsedCurrentTechnology": 2400, + "scoreValueMineralsUsedInProgressArmy": 750, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 496, + "scoreValueVespeneCurrent": 681, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1175, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 225, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 1150, + "scoreValueVespeneUsedCurrentArmy": 1150, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 675, + "scoreValueVespeneUsedInProgressArmy": 75, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 58 + } + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 254, + "id": 8, + "items": [ + 0, + 64, + 97, + 7, + 76, + 104, + 32, + 57, + 99, + 9, + 55, + 105, + 4, + 74, + 117, + 3, + 58, + 106, + 6, + 65, + 99, + 8, + 61, + 37, + 10, + 70, + 102, + 27, + 57, + 98, + 15, + 73, + 25, + 10, + 69, + 31, + 8, + 59, + 38, + 3, + 73, + 117, + 4, + 62, + 37, + 6, + 57, + 99, + 12, + 73, + 88, + 4, + 72, + 112, + 6, + 57, + 98, + 12, + 67, + 98, + 1, + 70, + 104, + 4, + 58, + 107, + 13, + 70, + 103, + 7, + 58, + 103, + 3, + 69, + 104, + 1, + 69, + 31, + 2, + 58, + 38, + 3, + 58, + 98, + 1, + 70, + 106, + 3, + 70, + 105, + 4, + 68, + 99, + 4, + 70, + 106, + 2, + 68, + 99, + 2, + 68, + 98, + 3, + 71, + 109, + 1, + 66, + 98, + 3, + 70, + 101, + 9, + 70, + 32 + ], + "loop": 12480 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12495, + "unitTagIndex": 504, + "unitTagRecycle": 7, + "unitTypeName": "Hellion", + "upkeepPlayerId": 2, + "x": 27, + "y": 24 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 441, + "killerUnitTagRecycle": 21, + "loop": 12501, + "unitTagIndex": 261, + "unitTagRecycle": 1, + "x": 76, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12506, + "unitTagIndex": 261, + "unitTagRecycle": 2, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 44, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12506, + "unitTagIndex": 7, + "unitTagRecycle": 3, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12506, + "unitTagIndex": 7, + "unitTagRecycle": 3, + "x": 44, + "y": 99 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12512, + "unitTagIndex": 7, + "unitTagRecycle": 4, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 43, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12512, + "unitTagIndex": 364, + "unitTagRecycle": 15, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12512, + "unitTagIndex": 364, + "unitTagRecycle": 15, + "x": 43, + "y": 99 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12512, + "unitTagIndex": 449, + "unitTagRecycle": 13, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 44, + "y": 98 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12512, + "unitTagIndex": 344, + "unitTagRecycle": 11, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12512, + "unitTagIndex": 344, + "unitTagRecycle": 11, + "x": 44, + "y": 98 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12513, + "unitTagIndex": 409, + "unitTagRecycle": 9, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 42, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12513, + "unitTagIndex": 516, + "unitTagRecycle": 3, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12513, + "unitTagIndex": 516, + "unitTagRecycle": 3, + "x": 42, + "y": 99 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12513, + "unitTagIndex": 481, + "unitTagRecycle": 5, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 44, + "y": 99 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12513, + "unitTagIndex": 502, + "unitTagRecycle": 3, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12513, + "unitTagIndex": 502, + "unitTagRecycle": 3, + "x": 44, + "y": 99 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12515, + "unitTagIndex": 516, + "unitTagRecycle": 4, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 43, + "y": 98 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12515, + "unitTagIndex": 530, + "unitTagRecycle": 1, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12515, + "unitTagIndex": 530, + "unitTagRecycle": 1, + "x": 43, + "y": 98 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12515, + "unitTagIndex": 502, + "unitTagRecycle": 4, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 42, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12515, + "unitTagIndex": 526, + "unitTagRecycle": 2, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12515, + "unitTagIndex": 526, + "unitTagRecycle": 2, + "x": 42, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12516, + "unitTagIndex": 344, + "unitTagRecycle": 12, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 42, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12516, + "unitTagIndex": 531, + "unitTagRecycle": 1, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12516, + "unitTagIndex": 531, + "unitTagRecycle": 1, + "x": 42, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12517, + "unitTagIndex": 530, + "unitTagRecycle": 2, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 45, + "y": 98 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12517, + "unitTagIndex": 536, + "unitTagRecycle": 1, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12517, + "unitTagIndex": 536, + "unitTagRecycle": 1, + "x": 45, + "y": 98 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12517, + "unitTagIndex": 526, + "unitTagRecycle": 3, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 44, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12517, + "unitTagIndex": 535, + "unitTagRecycle": 1, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12517, + "unitTagIndex": 535, + "unitTagRecycle": 1, + "x": 44, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12519, + "unitTagIndex": 535, + "unitTagRecycle": 2, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 45, + "y": 97 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12519, + "unitTagIndex": 538, + "unitTagRecycle": 1, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12519, + "unitTagIndex": 538, + "unitTagRecycle": 1, + "x": 45, + "y": 97 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12519, + "unitTagIndex": 536, + "unitTagRecycle": 2, + "unitTypeName": "Baneling", + "upkeepPlayerId": 1, + "x": 43, + "y": 100 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12519, + "unitTagIndex": 537, + "unitTagRecycle": 1, + "unitTypeName": "Zergling" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12519, + "unitTagIndex": 537, + "unitTagRecycle": 1, + "x": 43, + "y": 100 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 323, + "killerUnitTagRecycle": 7, + "loop": 12533, + "unitTagIndex": 469, + "unitTagRecycle": 14, + "x": 69, + "y": 32 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12534, + "unitTagIndex": 537, + "unitTagRecycle": 2, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 318, + "killerUnitTagRecycle": 4, + "loop": 12544, + "unitTagIndex": 506, + "unitTagRecycle": 4, + "x": 70, + "y": 32 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 441, + "killerUnitTagRecycle": 21, + "loop": 12545, + "unitTagIndex": 493, + "unitTagRecycle": 6, + "x": 72, + "y": 109 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 465, + "killerUnitTagRecycle": 2, + "loop": 12551, + "unitTagIndex": 302, + "unitTagRecycle": 4, + "x": 55, + "y": 105 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 465, + "killerUnitTagRecycle": 2, + "loop": 12551, + "unitTagIndex": 309, + "unitTagRecycle": 3, + "x": 56, + "y": 105 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12557, + "unitTagIndex": 302, + "unitTagRecycle": 5, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 30 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12560, + "unitTagIndex": 107, + "unitTagRecycle": 5, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12563, + "unitTagIndex": 309, + "unitTagRecycle": 4, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 33 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 385, + "killerUnitTagRecycle": 3, + "loop": 12564, + "unitTagIndex": 471, + "unitTagRecycle": 1, + "x": 68, + "y": 36 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 400, + "killerUnitTagRecycle": 7, + "loop": 12564, + "unitTagIndex": 385, + "unitTagRecycle": 3, + "x": 69, + "y": 36 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12564, + "unitTagIndex": 493, + "unitTagRecycle": 7, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12567, + "unitTagIndex": 356, + "unitTagRecycle": 19, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12567, + "unitTagIndex": 442, + "unitTagRecycle": 7, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12568, + "unitTagIndex": 499, + "unitTagRecycle": 8, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 400, + "killerUnitTagRecycle": 7, + "loop": 12578, + "unitTagIndex": 318, + "unitTagRecycle": 4, + "x": 66, + "y": 37 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 465, + "killerUnitTagRecycle": 2, + "loop": 12582, + "unitTagIndex": 295, + "unitTagRecycle": 1, + "x": 55, + "y": 105 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12590, + "unitTagIndex": 295, + "unitTagRecycle": 2, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 482, + "killerUnitTagRecycle": 1, + "loop": 12630, + "unitTagIndex": 423, + "unitTagRecycle": 2, + "x": 75, + "y": 110 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12640, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 491520, + "scoreValueFoodUsed": 333824, + "scoreValueMineralsCollectionRate": 940, + "scoreValueMineralsCurrent": 152, + "scoreValueMineralsFriendlyFireArmy": 700, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 2900, + "scoreValueMineralsKilledEconomy": 300, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 3418, + "scoreValueMineralsLostEconomy": 1350, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1300, + "scoreValueMineralsUsedCurrentArmy": 1375, + "scoreValueMineralsUsedCurrentEconomy": 5700, + "scoreValueMineralsUsedCurrentTechnology": 1500, + "scoreValueMineralsUsedInProgressArmy": 500, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 512, + "scoreValueVespeneCurrent": 551, + "scoreValueVespeneFriendlyFireArmy": 350, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 225, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1193, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 825, + "scoreValueVespeneUsedCurrentArmy": 825, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 53 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12640, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 643072, + "scoreValueFoodUsed": 548864, + "scoreValueMineralsCollectionRate": 1140, + "scoreValueMineralsCurrent": 52, + "scoreValueMineralsFriendlyFireArmy": 50, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 3400, + "scoreValueMineralsKilledEconomy": 1350, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 2900, + "scoreValueMineralsLostEconomy": 300, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2975, + "scoreValueMineralsUsedCurrentArmy": 2975, + "scoreValueMineralsUsedCurrentEconomy": 6075, + "scoreValueMineralsUsedCurrentTechnology": 2400, + "scoreValueMineralsUsedInProgressArmy": 650, + "scoreValueMineralsUsedInProgressEconomy": 150, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 496, + "scoreValueVespeneCurrent": 765, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1175, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 225, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 1150, + "scoreValueVespeneUsedCurrentArmy": 1150, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 675, + "scoreValueVespeneUsedInProgressArmy": 75, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 57 + } + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 486, + "killerUnitTagRecycle": 6, + "loop": 12640, + "unitTagIndex": 435, + "unitTagRecycle": 3, + "x": 75, + "y": 116 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12643, + "unitTagIndex": 435, + "unitTagRecycle": 4, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 22, + "y": 28 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12646, + "unitTagIndex": 471, + "unitTagRecycle": 3, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 54, + "y": 32 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12648, + "unitTagIndex": 423, + "unitTagRecycle": 4, + "unitTypeName": "SCV", + "upkeepPlayerId": 2, + "x": 71, + "y": 27 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 497, + "killerUnitTagRecycle": 6, + "loop": 12663, + "unitTagIndex": 202, + "unitTagRecycle": 1, + "x": 75, + "y": 116 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 488, + "killerUnitTagRecycle": 4, + "loop": 12665, + "unitTagIndex": 396, + "unitTagRecycle": 3, + "x": 74, + "y": 117 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 497, + "killerUnitTagRecycle": 6, + "loop": 12673, + "unitTagIndex": 205, + "unitTagRecycle": 4, + "x": 75, + "y": 114 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 482, + "killerUnitTagRecycle": 1, + "loop": 12676, + "unitTagIndex": 535, + "unitTagRecycle": 2, + "x": 71, + "y": 107 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 458, + "killerUnitTagRecycle": 5, + "loop": 12676, + "unitTagIndex": 306, + "unitTagRecycle": 4, + "x": 75, + "y": 115 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12688, + "unitTagIndex": 481, + "unitTagRecycle": 5, + "x": 71, + "y": 108 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12688, + "unitTagIndex": 440, + "unitTagRecycle": 12, + "x": 71, + "y": 108 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12688, + "unitTagIndex": 490, + "unitTagRecycle": 3, + "x": 72, + "y": 109 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12688, + "unitTagIndex": 482, + "unitTagRecycle": 1, + "x": 72, + "y": 109 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12688, + "unitTagIndex": 494, + "unitTagRecycle": 2, + "x": 72, + "y": 110 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 406, + "killerUnitTagRecycle": 5, + "loop": 12690, + "unitTagIndex": 465, + "unitTagRecycle": 2, + "x": 58, + "y": 103 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 475, + "killerUnitTagRecycle": 11, + "loop": 12705, + "unitTagIndex": 491, + "unitTagRecycle": 3, + "x": 73, + "y": 112 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 333, + "killerUnitTagRecycle": 5, + "loop": 12713, + "unitTagIndex": 409, + "unitTagRecycle": 9, + "x": 74, + "y": 112 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12713, + "unitTagIndex": 396, + "unitTagRecycle": 7, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12713, + "unitTagIndex": 494, + "unitTagRecycle": 5, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12713, + "unitTagIndex": 282, + "unitTagRecycle": 7, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12713, + "unitTagIndex": 282, + "unitTagRecycle": 7, + "x": 74, + "y": 104 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12717, + "unitTagIndex": 409, + "unitTagRecycle": 10, + "unitTypeName": "Marauder", + "upkeepPlayerId": 2, + "x": 36, + "y": 31 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12718, + "unitTagIndex": 440, + "unitTagRecycle": 15, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12718, + "unitTagIndex": 282, + "unitTagRecycle": 8, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 75, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12718, + "unitTagIndex": 308, + "unitTagRecycle": 5, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12718, + "unitTagIndex": 308, + "unitTagRecycle": 5, + "x": 75, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12719, + "unitTagIndex": 465, + "unitTagRecycle": 5, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 79, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12719, + "unitTagIndex": 205, + "unitTagRecycle": 8, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 80, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12719, + "unitTagIndex": 387, + "unitTagRecycle": 4, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12719, + "unitTagIndex": 387, + "unitTagRecycle": 4, + "x": 79, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12719, + "unitTagIndex": 491, + "unitTagRecycle": 4, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 73, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12719, + "unitTagIndex": 490, + "unitTagRecycle": 4, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 73, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12719, + "unitTagIndex": 338, + "unitTagRecycle": 8, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12719, + "unitTagIndex": 338, + "unitTagRecycle": 8, + "x": 73, + "y": 104 + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 220, + "id": 8, + "items": [ + 0, + 69, + 110, + 73, + 73, + 111, + 30, + 60, + 56, + 10, + 74, + 114, + 2, + 70, + 111, + 25, + 62, + 104, + 40, + 60, + 57, + 6, + 63, + 103, + 7, + 71, + 111, + 5, + 72, + 119, + 1, + 74, + 116, + 3, + 73, + 115, + 6, + 63, + 104, + 13, + 74, + 115, + 17, + 74, + 114, + 10, + 78, + 111, + 6, + 63, + 102, + 1, + 76, + 116, + 3, + 71, + 118, + 8, + 70, + 118, + 2, + 79, + 112, + 9, + 73, + 112, + 4, + 74, + 112 + ], + "loop": 12720 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12721, + "unitTagIndex": 338, + "unitTagRecycle": 9, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12721, + "unitTagIndex": 387, + "unitTagRecycle": 5, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 20, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12721, + "unitTagIndex": 447, + "unitTagRecycle": 5, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12721, + "unitTagIndex": 447, + "unitTagRecycle": 5, + "x": 20, + "y": 108 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12721, + "unitTagIndex": 308, + "unitTagRecycle": 6, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 73, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12721, + "unitTagIndex": 481, + "unitTagRecycle": 6, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12721, + "unitTagIndex": 479, + "unitTagRecycle": 10, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12721, + "unitTagIndex": 479, + "unitTagRecycle": 10, + "x": 73, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12742, + "unitTagIndex": 449, + "unitTagRecycle": 13, + "x": 75, + "y": 114 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12742, + "unitTagIndex": 333, + "unitTagRecycle": 5, + "x": 74, + "y": 114 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12742, + "unitTagIndex": 497, + "unitTagRecycle": 6, + "x": 73, + "y": 112 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12744, + "unitTagIndex": 261, + "unitTagRecycle": 2, + "x": 74, + "y": 114 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12744, + "unitTagIndex": 458, + "unitTagRecycle": 5, + "x": 74, + "y": 114 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12744, + "unitTagIndex": 441, + "unitTagRecycle": 21, + "x": 74, + "y": 115 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12757, + "unitTagIndex": 502, + "unitTagRecycle": 4, + "x": 77, + "y": 117 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12758, + "unitTagIndex": 7, + "unitTagRecycle": 4, + "x": 76, + "y": 116 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12758, + "unitTagIndex": 475, + "unitTagRecycle": 11, + "x": 77, + "y": 116 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12770, + "unitTagIndex": 441, + "unitTagRecycle": 24, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 80, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12774, + "unitTagIndex": 447, + "unitTagRecycle": 8, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 494, + "killerUnitTagRecycle": 5, + "loop": 12782, + "unitTagIndex": 451, + "unitTagRecycle": 2, + "x": 65, + "y": 92 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12796, + "unitTagIndex": 441, + "unitTagRecycle": 24, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12800, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 491520, + "scoreValueFoodUsed": 299008, + "scoreValueMineralsCollectionRate": 1060, + "scoreValueMineralsCurrent": 297, + "scoreValueMineralsFriendlyFireArmy": 950, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 3500, + "scoreValueMineralsKilledEconomy": 300, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 3518, + "scoreValueMineralsLostEconomy": 1650, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 1250, + "scoreValueMineralsUsedCurrentArmy": 1325, + "scoreValueMineralsUsedCurrentEconomy": 5400, + "scoreValueMineralsUsedCurrentTechnology": 1500, + "scoreValueMineralsUsedInProgressArmy": 250, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 336, + "scoreValueVespeneCurrent": 607, + "scoreValueVespeneFriendlyFireArmy": 475, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 225, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1243, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 650, + "scoreValueVespeneUsedCurrentArmy": 650, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 47 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12800, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 643072, + "scoreValueFoodUsed": 507904, + "scoreValueMineralsCollectionRate": 1140, + "scoreValueMineralsCurrent": 87, + "scoreValueMineralsFriendlyFireArmy": 50, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 3500, + "scoreValueMineralsKilledEconomy": 1650, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 3500, + "scoreValueMineralsLostEconomy": 300, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 2475, + "scoreValueMineralsUsedCurrentArmy": 2475, + "scoreValueMineralsUsedCurrentEconomy": 6225, + "scoreValueMineralsUsedCurrentTechnology": 2400, + "scoreValueMineralsUsedInProgressArmy": 650, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 528, + "scoreValueVespeneCurrent": 853, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1225, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 225, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 1175, + "scoreValueVespeneUsedCurrentArmy": 1175, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 675, + "scoreValueVespeneUsedInProgressArmy": 75, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 60 + } + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12802, + "unitTagIndex": 447, + "unitTagRecycle": 8, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12802, + "unitTagIndex": 500, + "unitTagRecycle": 5, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12803, + "unitTagIndex": 517, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12803, + "unitTagIndex": 518, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12805, + "unitTagIndex": 520, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12807, + "unitTagIndex": 521, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12808, + "unitTagIndex": 479, + "unitTagRecycle": 16, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12814, + "unitTagIndex": 7, + "unitTagRecycle": 9, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 30 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12814, + "unitTagIndex": 333, + "unitTagRecycle": 8, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 33 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12814, + "unitTagIndex": 458, + "unitTagRecycle": 10, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12814, + "unitTagIndex": 451, + "unitTagRecycle": 4, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 293, + "killerUnitTagRecycle": 4, + "loop": 12821, + "unitTagIndex": 419, + "unitTagRecycle": 1, + "x": 75, + "y": 115 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12821, + "unitTagIndex": 474, + "unitTagRecycle": 3, + "x": 74, + "y": 112 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12822, + "unitTagIndex": 293, + "unitTagRecycle": 4, + "x": 73, + "y": 113 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 468, + "killerUnitTagRecycle": 10, + "loop": 12825, + "unitTagIndex": 536, + "unitTagRecycle": 2, + "x": 71, + "y": 109 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 468, + "killerUnitTagRecycle": 10, + "loop": 12825, + "unitTagIndex": 516, + "unitTagRecycle": 4, + "x": 71, + "y": 109 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12825, + "unitTagIndex": 486, + "unitTagRecycle": 6, + "x": 71, + "y": 111 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12831, + "unitTagIndex": 530, + "unitTagRecycle": 2, + "x": 72, + "y": 110 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12833, + "unitTagIndex": 501, + "unitTagRecycle": 5, + "x": 73, + "y": 110 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12837, + "unitTagIndex": 526, + "unitTagRecycle": 3, + "x": 72, + "y": 110 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12837, + "unitTagIndex": 468, + "unitTagRecycle": 10, + "x": 73, + "y": 110 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 205, + "killerUnitTagRecycle": 8, + "loop": 12839, + "unitTagIndex": 212, + "unitTagRecycle": 1, + "x": 63, + "y": 88 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 481, + "killerUnitTagRecycle": 6, + "loop": 12841, + "unitTagIndex": 508, + "unitTagRecycle": 1, + "x": 63, + "y": 88 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 478, + "killerUnitTagRecycle": 7, + "loop": 12846, + "unitTagIndex": 360, + "unitTagRecycle": 3, + "x": 73, + "y": 114 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12849, + "unitTagIndex": 344, + "unitTagRecycle": 12, + "x": 71, + "y": 112 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 357, + "killerUnitTagRecycle": 5, + "loop": 12850, + "unitTagIndex": 490, + "unitTagRecycle": 4, + "x": 64, + "y": 89 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12851, + "unitTagIndex": 415, + "unitTagRecycle": 3, + "x": 71, + "y": 28 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 465, + "killerUnitTagRecycle": 5, + "loop": 12854, + "unitTagIndex": 460, + "unitTagRecycle": 6, + "x": 64, + "y": 88 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 504, + "killerUnitTagRecycle": 7, + "loop": 12855, + "unitTagIndex": 465, + "unitTagRecycle": 5, + "x": 63, + "y": 87 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 104, + "killerUnitTagRecycle": 5, + "loop": 12868, + "unitTagIndex": 494, + "unitTagRecycle": 5, + "x": 60, + "y": 86 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12870, + "unitTagIndex": 479, + "unitTagRecycle": 16, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 418, + "killerUnitTagRecycle": 1, + "loop": 12871, + "unitTagIndex": 428, + "unitTagRecycle": 10, + "x": 73, + "y": 114 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 393, + "killerUnitTagRecycle": 6, + "loop": 12881, + "unitTagIndex": 205, + "unitTagRecycle": 8, + "x": 59, + "y": 84 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 400, + "killerUnitTagRecycle": 7, + "loop": 12885, + "unitTagIndex": 308, + "unitTagRecycle": 6, + "x": 58, + "y": 85 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12886, + "unitTagIndex": 1, + "unitTagRecycle": 1, + "x": 14, + "y": 27 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 498, + "killerUnitTagRecycle": 3, + "loop": 12888, + "unitTagIndex": 396, + "unitTagRecycle": 7, + "x": 61, + "y": 85 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 104, + "killerUnitTagRecycle": 5, + "loop": 12892, + "unitTagIndex": 440, + "unitTagRecycle": 15, + "x": 59, + "y": 85 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 282, + "killerUnitTagRecycle": 8, + "loop": 12897, + "unitTagIndex": 495, + "unitTagRecycle": 5, + "x": 60, + "y": 86 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 504, + "killerUnitTagRecycle": 7, + "loop": 12898, + "unitTagIndex": 282, + "unitTagRecycle": 8, + "x": 59, + "y": 85 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 323, + "killerUnitTagRecycle": 7, + "loop": 12900, + "unitTagIndex": 481, + "unitTagRecycle": 6, + "x": 58, + "y": 85 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 478, + "killerUnitTagRecycle": 7, + "loop": 12914, + "unitTagIndex": 406, + "unitTagRecycle": 5, + "x": 74, + "y": 113 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12938, + "unitTagIndex": 406, + "unitTagRecycle": 6, + "unitTypeName": "WidowMine", + "upkeepPlayerId": 2, + "x": 27, + "y": 24 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12941, + "unitTagIndex": 308, + "unitTagRecycle": 9, + "unitTypeName": "WidowMine", + "upkeepPlayerId": 2, + "x": 43, + "y": 32 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12944, + "unitTagIndex": 481, + "unitTagRecycle": 7, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 79, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12944, + "unitTagIndex": 1, + "unitTagRecycle": 3, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 79, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12944, + "unitTagIndex": 107, + "unitTagRecycle": 5, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12944, + "unitTagIndex": 107, + "unitTagRecycle": 5, + "x": 79, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12951, + "unitTagIndex": 107, + "unitTagRecycle": 6, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 81, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12951, + "unitTagIndex": 495, + "unitTagRecycle": 6, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 81, + "y": 103 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12951, + "unitTagIndex": 356, + "unitTagRecycle": 19, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12951, + "unitTagIndex": 356, + "unitTagRecycle": 19, + "x": 81, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12951, + "unitTagIndex": 494, + "unitTagRecycle": 9, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 81, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12951, + "unitTagIndex": 440, + "unitTagRecycle": 16, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 82, + "y": 105 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12951, + "unitTagIndex": 442, + "unitTagRecycle": 7, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12951, + "unitTagIndex": 442, + "unitTagRecycle": 7, + "x": 81, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12952, + "unitTagIndex": 396, + "unitTagRecycle": 8, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12952, + "unitTagIndex": 465, + "unitTagRecycle": 8, + "unitTypeName": "Zergling", + "upkeepPlayerId": 1, + "x": 22, + "y": 107 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 12952, + "unitTagIndex": 499, + "unitTagRecycle": 8, + "unitTypeName": "Larva" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": null, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 12952, + "unitTagIndex": 499, + "unitTagRecycle": 8, + "x": 22, + "y": 107 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12956, + "unitTagIndex": 499, + "unitTagRecycle": 9, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 30 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12960, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 491520, + "scoreValueFoodUsed": 256000, + "scoreValueMineralsCollectionRate": 1320, + "scoreValueMineralsCurrent": 172, + "scoreValueMineralsFriendlyFireArmy": 1150, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 3800, + "scoreValueMineralsKilledEconomy": 500, + "scoreValueMineralsKilledTechnology": 100, + "scoreValueMineralsLostArmy": 4343, + "scoreValueMineralsLostEconomy": 1650, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 425, + "scoreValueMineralsUsedCurrentArmy": 500, + "scoreValueMineralsUsedCurrentEconomy": 5400, + "scoreValueMineralsUsedCurrentTechnology": 1500, + "scoreValueMineralsUsedInProgressArmy": 400, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 336, + "scoreValueVespeneCurrent": 667, + "scoreValueVespeneFriendlyFireArmy": 575, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 375, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1793, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 47 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 12960, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 643072, + "scoreValueFoodUsed": 487424, + "scoreValueMineralsCollectionRate": 1200, + "scoreValueMineralsCurrent": 92, + "scoreValueMineralsFriendlyFireArmy": 50, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 4325, + "scoreValueMineralsKilledEconomy": 1650, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 3834, + "scoreValueMineralsLostEconomy": 500, + "scoreValueMineralsLostTechnology": 100, + "scoreValueMineralsUsedActiveForces": 2575, + "scoreValueMineralsUsedCurrentArmy": 2575, + "scoreValueMineralsUsedCurrentEconomy": 6025, + "scoreValueMineralsUsedCurrentTechnology": 2300, + "scoreValueMineralsUsedInProgressArmy": 500, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 544, + "scoreValueVespeneCurrent": 937, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1775, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 409, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 1075, + "scoreValueVespeneUsedCurrentArmy": 1075, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 675, + "scoreValueVespeneUsedInProgressArmy": 25, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 56 + } + }, + { + "evtTypeName": "UnitPositions", + "firstUnitIndex": 104, + "id": 8, + "items": [ + 0, + 66, + 93, + 104, + 63, + 85, + 93, + 61, + 84, + 6, + 61, + 85, + 8, + 71, + 111, + 8, + 64, + 89, + 32, + 71, + 110, + 2, + 65, + 90, + 4, + 61, + 84, + 32, + 66, + 92, + 7, + 64, + 91, + 18, + 73, + 113, + 4, + 69, + 110, + 7, + 71, + 113, + 7, + 60, + 84, + 3, + 61, + 84, + 39, + 71, + 113, + 5, + 63, + 89, + 5, + 81, + 112, + 3, + 71, + 106, + 5, + 63, + 88, + 2, + 62, + 85, + 6, + 67, + 91, + 6, + 62, + 85 + ], + "loop": 12960 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12962, + "unitTagIndex": 282, + "unitTagRecycle": 10, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 27, + "y": 33 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12963, + "unitTagIndex": 205, + "unitTagRecycle": 11, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 35, + "y": 27 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 504, + "killerUnitTagRecycle": 7, + "loop": 12981, + "unitTagIndex": 481, + "unitTagRecycle": 7, + "x": 70, + "y": 96 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 104, + "killerUnitTagRecycle": 5, + "loop": 12988, + "unitTagIndex": 1, + "unitTagRecycle": 3, + "x": 69, + "y": 96 + }, + { + "controlPlayerId": 2, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 12989, + "unitTagIndex": 356, + "unitTagRecycle": 21, + "unitTypeName": "Marine", + "upkeepPlayerId": 2, + "x": 37, + "y": 34 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 470, + "killerUnitTagRecycle": 9, + "loop": 12996, + "unitTagIndex": 107, + "unitTagRecycle": 6, + "x": 69, + "y": 96 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 104, + "killerUnitTagRecycle": 5, + "loop": 13007, + "unitTagIndex": 495, + "unitTagRecycle": 6, + "x": 68, + "y": 96 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 13013, + "unitTagIndex": 504, + "unitTagRecycle": 7, + "unitTypeName": "HellionTank" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 13014, + "unitTagIndex": 1, + "unitTagRecycle": 5, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 74, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 470, + "killerUnitTagRecycle": 9, + "loop": 13015, + "unitTagIndex": 440, + "unitTagRecycle": 16, + "x": 69, + "y": 96 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 13019, + "unitTagIndex": 1, + "unitTagRecycle": 5, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 400, + "killerUnitTagRecycle": 7, + "loop": 13021, + "unitTagIndex": 494, + "unitTagRecycle": 9, + "x": 69, + "y": 95 + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 13025, + "unitTagIndex": 525, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 13026, + "unitTagIndex": 527, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 13026, + "unitTagIndex": 528, + "unitTagRecycle": 1, + "unitTypeName": "Egg" + }, + { + "evtTypeName": "UnitTypeChange", + "id": 4, + "loop": 13028, + "unitTagIndex": 537, + "unitTagRecycle": 2, + "unitTypeName": "Egg" + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 13036, + "unitTagIndex": 495, + "unitTagRecycle": 8, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 80, + "y": 104 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 13045, + "unitTagIndex": 490, + "unitTagRecycle": 10, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 51, + "y": 100 + }, + { + "controlPlayerId": 1, + "evtTypeName": "UnitBorn", + "id": 1, + "loop": 13048, + "unitTagIndex": 494, + "unitTagRecycle": 11, + "unitTypeName": "Larva", + "upkeepPlayerId": 1, + "x": 21, + "y": 107 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": 491, + "killerUnitTagRecycle": 4, + "loop": 13052, + "unitTagIndex": 478, + "unitTagRecycle": 7, + "x": 71, + "y": 113 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 470, + "killerUnitTagRecycle": 9, + "loop": 13060, + "unitTagIndex": 382, + "unitTagRecycle": 3, + "x": 69, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 357, + "killerUnitTagRecycle": 5, + "loop": 13080, + "unitTagIndex": 465, + "unitTagRecycle": 8, + "x": 68, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 504, + "killerUnitTagRecycle": 7, + "loop": 13092, + "unitTagIndex": 396, + "unitTagRecycle": 8, + "x": 68, + "y": 99 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 418, + "killerUnitTagRecycle": 1, + "loop": 13095, + "unitTagIndex": 422, + "unitTagRecycle": 5, + "x": 65, + "y": 108 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 104, + "killerUnitTagRecycle": 5, + "loop": 13100, + "unitTagIndex": 303, + "unitTagRecycle": 6, + "x": 69, + "y": 103 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 13101, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 458752, + "scoreValueFoodUsed": 251904, + "scoreValueMineralsCollectionRate": 1500, + "scoreValueMineralsCurrent": 132, + "scoreValueMineralsFriendlyFireArmy": 1150, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 3850, + "scoreValueMineralsKilledEconomy": 500, + "scoreValueMineralsKilledTechnology": 100, + "scoreValueMineralsLostArmy": 4543, + "scoreValueMineralsLostEconomy": 1850, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 225, + "scoreValueMineralsUsedCurrentArmy": 300, + "scoreValueMineralsUsedCurrentEconomy": 5200, + "scoreValueMineralsUsedCurrentTechnology": 1500, + "scoreValueMineralsUsedInProgressArmy": 650, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 336, + "scoreValueVespeneCurrent": 719, + "scoreValueVespeneFriendlyFireArmy": 575, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 375, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1793, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 45 + } + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 13101, + "playerId": 1, + "stats": { + "scoreValueFoodMade": 458752, + "scoreValueFoodUsed": 251904, + "scoreValueMineralsCollectionRate": 1500, + "scoreValueMineralsCurrent": 132, + "scoreValueMineralsFriendlyFireArmy": 1150, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 3850, + "scoreValueMineralsKilledEconomy": 500, + "scoreValueMineralsKilledTechnology": 100, + "scoreValueMineralsLostArmy": 4543, + "scoreValueMineralsLostEconomy": 1850, + "scoreValueMineralsLostTechnology": 0, + "scoreValueMineralsUsedActiveForces": 225, + "scoreValueMineralsUsedCurrentArmy": 300, + "scoreValueMineralsUsedCurrentEconomy": 5200, + "scoreValueMineralsUsedCurrentTechnology": 1500, + "scoreValueMineralsUsedInProgressArmy": 650, + "scoreValueMineralsUsedInProgressEconomy": 350, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 336, + "scoreValueVespeneCurrent": 719, + "scoreValueVespeneFriendlyFireArmy": 575, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 375, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 1793, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 0, + "scoreValueVespeneUsedCurrentArmy": 0, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 350, + "scoreValueVespeneUsedInProgressArmy": 0, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 45 + } + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 1, + "killerUnitTagIndex": null, + "killerUnitTagRecycle": null, + "loop": 13101, + "unitTagIndex": 255, + "unitTagRecycle": 8, + "x": 102, + "y": 112 + }, + { + "evtTypeName": "PlayerStats", + "id": 0, + "loop": 13101, + "playerId": 2, + "stats": { + "scoreValueFoodMade": 643072, + "scoreValueFoodUsed": 495616, + "scoreValueMineralsCollectionRate": 1220, + "scoreValueMineralsCurrent": 162, + "scoreValueMineralsFriendlyFireArmy": 50, + "scoreValueMineralsFriendlyFireEconomy": 0, + "scoreValueMineralsFriendlyFireTechnology": 0, + "scoreValueMineralsKilledArmy": 4525, + "scoreValueMineralsKilledEconomy": 1850, + "scoreValueMineralsKilledTechnology": 0, + "scoreValueMineralsLostArmy": 3884, + "scoreValueMineralsLostEconomy": 500, + "scoreValueMineralsLostTechnology": 100, + "scoreValueMineralsUsedActiveForces": 2675, + "scoreValueMineralsUsedCurrentArmy": 2675, + "scoreValueMineralsUsedCurrentEconomy": 6025, + "scoreValueMineralsUsedCurrentTechnology": 2300, + "scoreValueMineralsUsedInProgressArmy": 500, + "scoreValueMineralsUsedInProgressEconomy": 0, + "scoreValueMineralsUsedInProgressTechnology": 0, + "scoreValueVespeneCollectionRate": 512, + "scoreValueVespeneCurrent": 1013, + "scoreValueVespeneFriendlyFireArmy": 0, + "scoreValueVespeneFriendlyFireEconomy": 0, + "scoreValueVespeneFriendlyFireTechnology": 0, + "scoreValueVespeneKilledArmy": 1775, + "scoreValueVespeneKilledEconomy": 0, + "scoreValueVespeneKilledTechnology": 0, + "scoreValueVespeneLostArmy": 409, + "scoreValueVespeneLostEconomy": 0, + "scoreValueVespeneLostTechnology": 0, + "scoreValueVespeneUsedActiveForces": 1075, + "scoreValueVespeneUsedCurrentArmy": 1075, + "scoreValueVespeneUsedCurrentEconomy": 0, + "scoreValueVespeneUsedCurrentTechnology": 675, + "scoreValueVespeneUsedInProgressArmy": 25, + "scoreValueVespeneUsedInProgressEconomy": 0, + "scoreValueVespeneUsedInProgressTechnology": 0, + "scoreValueWorkersActiveCount": 56 + } + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 496, + "killerUnitTagRecycle": 6, + "loop": 13108, + "unitTagIndex": 220, + "unitTagRecycle": 2, + "x": 70, + "y": 103 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 393, + "killerUnitTagRecycle": 6, + "loop": 13114, + "unitTagIndex": 225, + "unitTagRecycle": 1, + "x": 69, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 323, + "killerUnitTagRecycle": 7, + "loop": 13117, + "unitTagIndex": 410, + "unitTagRecycle": 3, + "x": 69, + "y": 103 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 309, + "killerUnitTagRecycle": 4, + "loop": 13124, + "unitTagIndex": 383, + "unitTagRecycle": 3, + "x": 70, + "y": 102 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 493, + "killerUnitTagRecycle": 7, + "loop": 13136, + "unitTagIndex": 201, + "unitTagRecycle": 1, + "x": 70, + "y": 104 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 488, + "killerUnitTagRecycle": 4, + "loop": 13138, + "unitTagIndex": 338, + "unitTagRecycle": 9, + "x": 76, + "y": 109 + }, + { + "evtTypeName": "UnitDied", + "id": 2, + "killerPlayerId": 2, + "killerUnitTagIndex": 400, + "killerUnitTagRecycle": 7, + "loop": 13141, + "unitTagIndex": 281, + "unitTagRecycle": 3, + "x": 69, + "y": 105 + } + ], + "ToonPlayerDescMap": { + "3-S2-1-5282765": { + "nickname": "Soulkey", + "playerID": 0, + "userID": 0, + "SQ": 0, + "supplyCappedPercent": 0, + "startDir": 0, + "startLocX": 0, + "startLocY": 0, + "race": "Zerg", + "selectedRace": "", + "APM": 0, + "MMR": 0, + "result": "Defeat", + "region": "Korea", + "realm": "Korea", + "highestLeague": "Unranked", + "isInClan": false, + "clanTag": "", + "handicap": 100, + "color": { + "a": 255, + "b": 0, + "g": 66, + "r": 255 + } + }, + "3-S2-1-5286908": { + "nickname": "ByuN", + "playerID": 0, + "userID": 0, + "SQ": 0, + "supplyCappedPercent": 0, + "startDir": 0, + "startLocX": 0, + "startLocY": 0, + "race": "Terr", + "selectedRace": "", + "APM": 0, + "MMR": 0, + "result": "Victory", + "region": "Korea", + "realm": "Korea", + "highestLeague": "Unranked", + "isInClan": false, + "clanTag": "", + "handicap": 100, + "color": { + "a": 255, + "b": 180, + "g": 20, + "r": 30 + } + } + }, + "gameEventsErr": false, + "messageEventsErr": false, + "trackerEvtsErr": false +}